X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDeferredUpdates.php;h=f4e318d4da4e4d4e7bc13161cbeba7f61f69869c;hb=88b9611af96541903bddf10eda4d9064d42e8269;hp=28783d2e563462d53eff988dfe08e8d332e62aac;hpb=22b599e06ca623d577bf1ac99c08f3da2414c292;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DeferredUpdates.php b/includes/DeferredUpdates.php index 28783d2e56..f4e318d4da 100644 --- a/includes/DeferredUpdates.php +++ b/includes/DeferredUpdates.php @@ -2,6 +2,8 @@ /** * Interface that deferrable updates should implement. Basically required so we * can validate input on DeferredUpdates::addUpdate() + * + * @since 1.19 */ interface DeferrableUpdate { /** @@ -12,6 +14,8 @@ interface DeferrableUpdate { /** * Class for mananging the deferred updates. + * + * @since 1.19 */ class DeferredUpdates { /** @@ -31,6 +35,8 @@ class DeferredUpdates { * HTMLCacheUpdates are the most common deferred update people use. This * is a shortcut method for that. * @see HTMLCacheUpdate::__construct() + * @param $title + * @param $table */ public static function addHTMLCacheUpdate( $title, $table ) { self::addUpdate( new HTMLCacheUpdate( $title, $table ) );