Merge "Move up devunt's name to Developers"
[lhc/web/wiklou.git] / includes / deferred / DeferrableUpdate.php
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 }