repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Apply $wgMaxArticleSize more exactly
[mediawiki.git]
/
includes
/
deferred
/
DeferrableUpdate.php
blob
5f4d821060f0c2f135c6a77e45af84e64eeb6329
1
<
?php
2
3
/**
4
* Interface that deferrable updates should implement. Basically required so we
5
* can validate input on DeferredUpdates::addUpdate()
6
*
7
* @since 1.19
8
*/
9
interface
DeferrableUpdate
{
10
/**
11
* Perform the actual work
12
*/
13
function
doUpdate
();
14
}