summaryrefslogtreecommitdiff
path: root/www/wiki/includes/deferred/DeferrableUpdate.php
blob: 5f4d821060f0c2f135c6a77e45af84e64eeb6329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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();
}