X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiQueryBacklinks.php;h=524dda40b037401bcc96265e858ff4f34994cbc7;hb=8361098796e3d26a1cac684636a8b4ad992a53e7;hp=bda1e033e800e5498570ed7f7322e174f3a95775;hpb=5cb151864127c41d8db17722c8fce261b8f81f53;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiQueryBacklinks.php b/includes/api/ApiQueryBacklinks.php index bda1e033e8..524dda40b0 100644 --- a/includes/api/ApiQueryBacklinks.php +++ b/includes/api/ApiQueryBacklinks.php @@ -116,7 +116,7 @@ class ApiQueryBacklinks extends ApiQueryGeneratorBase { } /** - * @param $resultPageSet ApiPageSet + * @param ApiPageSet $resultPageSet * @return void */ private function prepareFirstQuery( $resultPageSet = null ) { @@ -161,7 +161,7 @@ class ApiQueryBacklinks extends ApiQueryGeneratorBase { } /** - * @param $resultPageSet ApiPageSet + * @param ApiPageSet $resultPageSet * @return void */ private function prepareSecondQuery( $resultPageSet = null ) { @@ -242,7 +242,7 @@ class ApiQueryBacklinks extends ApiQueryGeneratorBase { } /** - * @param $resultPageSet ApiPageSet + * @param ApiPageSet $resultPageSet * @return void */ private function run( $resultPageSet = null ) { @@ -534,13 +534,13 @@ class ApiQueryBacklinks extends ApiQueryGeneratorBase { public function getDescription() { switch ( $this->getModuleName() ) { case 'backlinks': - return 'Find all pages that link to the given page'; + return 'Find all pages that link to the given page.'; case 'embeddedin': - return 'Find all pages that embed (transclude) the given title'; + return 'Find all pages that embed (transclude) the given title.'; case 'imageusage': return 'Find all pages that use the given image title.'; default: - ApiBase::dieDebug( __METHOD__, 'Unknown module name' ); + ApiBase::dieDebug( __METHOD__, 'Unknown module name.' ); } }