(bug 28868) Include the number of pages in the default getLongDesc for multipaged...
[lhc/web/wiklou.git] / includes / BacklinkCache.php
index 0ebbdc3..6715d25 100644 (file)
@@ -114,7 +114,7 @@ class BacklinkCache {
         * @param $table String
         * @param $startId Integer or false
         * @param $endId Integer or false
-        * @return TitleArray
+        * @return TitleArrayFromResult
         */
        public function getLinks( $table, $startId = false, $endId = false ) {
                wfProfileIn( __METHOD__ );
@@ -272,7 +272,6 @@ class BacklinkCache {
                $this->partitionCache[$table][$batchSize] = false;
                $cacheEntry =& $this->partitionCache[$table][$batchSize];
 
-
                // 2) try full result cache
 
                if ( isset( $this->fullResultCache[$table] ) ) {
@@ -282,7 +281,6 @@ class BacklinkCache {
                        return $cacheEntry['batches'];
                }
 
-
                // 3) ... fallback to memcached ...
 
                global $wgMemc;
@@ -317,7 +315,7 @@ class BacklinkCache {
 
        /**
         * Partition a DB result with backlinks in it into batches
-        * @param $res database result
+        * @param $res ResultWrapper database result
         * @param $batchSize integer
         * @return array @see 
         */