diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2013-11-14 17:17:22 +0100 |
---|---|---|
committer | Chad Horohoe <chadh@wikimedia.org> | 2013-11-15 10:33:49 -0800 |
commit | a2dc799364499a3d0bbaf2d7b9609bef6e41bcf7 (patch) | |
tree | 9e169dc61c32d3b02f0c60b580642e14e5686850 /includes/api/ApiQueryExtLinksUsage.php | |
parent | 35ef56420e491e4f784d98258b3fb215b07f747b (diff) | |
download | mediawikicore-a2dc799364499a3d0bbaf2d7b9609bef6e41bcf7.tar.gz mediawikicore-a2dc799364499a3d0bbaf2d7b9609bef6e41bcf7.zip |
Fix a few more CodeSniffer errors and warnings on some API classes
Change-Id: I119be629d8c8811d08413751bcffc0ce403cc2bd
Diffstat (limited to 'includes/api/ApiQueryExtLinksUsage.php')
-rw-r--r-- | includes/api/ApiQueryExtLinksUsage.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/api/ApiQueryExtLinksUsage.php b/includes/api/ApiQueryExtLinksUsage.php index ae42bf73b2cb..d22081773ad5 100644 --- a/includes/api/ApiQueryExtLinksUsage.php +++ b/includes/api/ApiQueryExtLinksUsage.php @@ -102,7 +102,8 @@ class ApiQueryExtLinksUsage extends ApiQueryGeneratorBase { $count = 0; foreach ( $res as $row ) { if ( ++$count > $limit ) { - // We've reached the one extra which shows that there are additional pages to be had. Stop here... + // We've reached the one extra which shows that there are + // additional pages to be had. Stop here... $this->setContinueEnumParameter( 'offset', $offset + $limit ); break; } @@ -222,7 +223,8 @@ class ApiQueryExtLinksUsage extends ApiQueryGeneratorBase { "Protocol of the URL. If empty and {$p}query set, the protocol is http.", "Leave both this and {$p}query empty to list all external links" ), - 'query' => 'Search string without protocol. See [[Special:LinkSearch]]. Leave empty to list all external links', + 'query' => 'Search string without protocol. See [[Special:LinkSearch]]. ' . + 'Leave empty to list all external links', 'namespace' => 'The page namespace(s) to enumerate.', 'limit' => 'How many pages to return.', 'expandurl' => 'Expand protocol-relative URLs with the canonical protocol', |