15 lines
258 B
PHP
15 lines
258 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Interface that deferrable updates should implement. Basically required so we
|
||
|
|
* can validate input on DeferredUpdates::addUpdate()
|
||
|
|
*
|
||
|
|
* @since 1.19
|
||
|
|
*/
|
||
|
|
interface DeferrableUpdate {
|
||
|
|
/**
|
||
|
|
* Perform the actual work
|
||
|
|
*/
|
||
|
|
function doUpdate();
|
||
|
|
}
|