Merge "Replace WikiExporter streaming (unbuffered) mode with batched queries"
[lhc/web/wiklou.git] / includes / changes / RCCacheEntry.php
index 9aef3d3..9f85aa1 100644 (file)
  *
  * @file
  */
+
 class RCCacheEntry extends RecentChange {
-       var $secureName, $link;
-       var $curlink, $difflink, $lastlink, $usertalklink, $versionlink;
-       var $userlink, $timestamp, $watched;
+       public $curlink;
+       public $difflink;
+       public $lastlink;
+       public $link;
+       public $timestamp;
+       public $unpatrolled;
+       public $userlink;
+       public $usertalklink;
+       public $watched;
+       public $mAttribs;
+       public $mExtra;
 
        /**
-        * @param $rc RecentChange
+        * @param RecentChange $rc
         * @return RCCacheEntry
         */
        static function newFromParent( $rc ) {
                $rc2 = new RCCacheEntry;
                $rc2->mAttribs = $rc->mAttribs;
                $rc2->mExtra = $rc->mExtra;
+
                return $rc2;
        }
 }