Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / deferred / DeferrableUpdate.php
blob6299a11c16d682743a179ed432ff152797ae34e3
1 <?php
3 namespace MediaWiki\Deferred;
5 /**
6 * Interface that deferrable updates should implement. Basically required so we
7 * can validate input on DeferredUpdates::addUpdate()
9 * @stable to implement
11 * @since 1.19
13 interface DeferrableUpdate {
14 /**
15 * Perform the actual work
17 public function doUpdate();
20 /** @deprecated class alias since 1.42 */
21 class_alias( DeferrableUpdate::class, 'DeferrableUpdate' );