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(); }