Fixed spacing
[lhc/web/wiklou.git] / includes / deferred / HTMLCacheUpdate.php
index 8c91347..54fa594 100644 (file)
  * @ingroup Cache
  */
 class HTMLCacheUpdate implements DeferrableUpdate {
-       /**
-        * @var Title
-        */
+       /** @var Title */
        public $mTitle;
 
+       /** @var string */
        public $mTable;
 
        /**
-        * @param $titleTo
-        * @param $table
+        * @param Title $titleTo
+        * @param string $table
         */
        function __construct( Title $titleTo, $table ) {
                $this->mTitle = $titleTo;
@@ -55,8 +54,8 @@ class HTMLCacheUpdate implements DeferrableUpdate {
                        )
                );
 
-               $count = $this->mTitle->getBacklinkCache()->getNumLinks( $this->mTable, 200 );
-               if ( $count >= 200 ) { // many backlinks
+               $count = $this->mTitle->getBacklinkCache()->getNumLinks( $this->mTable, 100 );
+               if ( $count >= 100 ) { // many backlinks
                        JobQueueGroup::singleton()->push( $job );
                        JobQueueGroup::singleton()->deduplicateRootJob( $job );
                } else { // few backlinks ($count might be off even if 0)