From: Siebrand Mazeland Date: Sun, 17 Nov 2013 20:42:23 +0000 (+0100) Subject: Update LinkCache::addGoodLinkObj param defaults to int X-Git-Tag: 1.31.0-rc.0~18050 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22messagerie%22%29%20.%20%22?a=commitdiff_plain;h=4a4fc11008369af390ad1ba95d127d4ef84f1f3f;p=lhc%2Fweb%2Fwiklou.git Update LinkCache::addGoodLinkObj param defaults to int Update the defaults for $revision and $model from bool to int, making it consistent with the documented input. Also update docs and line length. Change "inval( $x )" to preferred "(int) $x" while changing the method. Change-Id: Ic19a408aa7c50fb03e2c3aca8df3fa7cedc2420b --- diff --git a/includes/cache/LinkCache.php b/includes/cache/LinkCache.php index 31d79f4ee1..0d706c08cb 100644 --- a/includes/cache/LinkCache.php +++ b/includes/cache/LinkCache.php @@ -123,21 +123,24 @@ class LinkCache { /** * Add a link for the title to the link cache * - * @param $id Integer: page's ID - * @param $title Title object - * @param $len Integer: text's length - * @param $redir Integer: whether the page is a redirect - * @param $revision Integer: latest revision's ID - * @param $model Integer: latest revision's content model ID + * @param int $id Page's ID + * @param Title $title + * @param int $len Text's length + * @param int $redir Whether the page is a redirect + * @param int $revision Latest revision's ID + * @param int $model Latest revision's content model ID */ - public function addGoodLinkObj( $id, $title, $len = -1, $redir = null, $revision = false, $model = false ) { + public function addGoodLinkObj( $id, $title, $len = -1, $redir = null, + $revision = 0, $model = 0 + ) { $dbkey = $title->getPrefixedDBkey(); - $this->mGoodLinks[$dbkey] = intval( $id ); + $this->mGoodLinks[$dbkey] = (int)$id; $this->mGoodLinkFields[$dbkey] = array( - 'length' => intval( $len ), - 'redirect' => intval( $redir ), - 'revision' => intval( $revision ), - 'model' => intval( $model ) ); + 'length' => (int)$len, + 'redirect' => (int)$redir, + 'revision' => (int)$revision, + 'model' => (int)$model + ); } /**