wiki.techinc.nl/includes/deferred/DeferrableUpdate.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
426 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Deferred;
/**
* Interface that deferrable updates should implement. Basically required so we
* can validate input on DeferredUpdates::addUpdate()
*
* @stable to implement
*
* @since 1.19
*/
interface DeferrableUpdate {
/**
* Perform the actual work
*/
public function doUpdate();
}
/** @deprecated class alias since 1.42 */
class_alias( DeferrableUpdate::class, 'DeferrableUpdate' );