RELEASE-NOTES-1.19 for r103706, r103708
[lhc/web/wiklou.git] / includes / DeferredUpdates.php
index 28783d2..f4e318d 100644 (file)
@@ -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 ) );