wanCache = $wanCache; } /** * Returns a BacklinkCache for $page. May re-use previously * created instances. * * Currently, only one cache instance can exist; callers that * need multiple backlink cache objects should keep them in scope. * * @param PageReference $page Page to get a backlink cache for * @return BacklinkCache */ public function getBacklinkCache( PageReference $page ): BacklinkCache { if ( !$this->latestBacklinkCache || !$this->latestBacklinkCache->getPage()->isSamePageAs( $page ) ) { $this->latestBacklinkCache = new BacklinkCache( $this->wanCache, $page ); } return $this->latestBacklinkCache; } }