diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2013-11-14 15:18:38 +0100 |
---|---|---|
committer | Chad <chadh@wikimedia.org> | 2013-11-15 18:08:13 +0000 |
commit | 770f2a2d410ccfa70fc121fa0cf524cbfcb4bf43 (patch) | |
tree | f6c8245f78a003ef8f532fe2fcb49281c5f186e4 /includes/api/ApiQueryPagePropNames.php | |
parent | e96c27a7329d88b943553d5a04bfe6256c103476 (diff) | |
download | mediawikicore-770f2a2d410ccfa70fc121fa0cf524cbfcb4bf43.tar.gz mediawikicore-770f2a2d410ccfa70fc121fa0cf524cbfcb4bf43.zip |
Fix CodeSniffer errors and warnings (you guessed it, on API classes)
Change-Id: I56f9632975d53bdfe33ff9412e1a4ba010bdb2aa
Diffstat (limited to 'includes/api/ApiQueryPagePropNames.php')
-rw-r--r-- | includes/api/ApiQueryPagePropNames.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/api/ApiQueryPagePropNames.php b/includes/api/ApiQueryPagePropNames.php index 08c883d8ebc8..5438175bd651 100644 --- a/includes/api/ApiQueryPagePropNames.php +++ b/includes/api/ApiQueryPagePropNames.php @@ -63,7 +63,8 @@ class ApiQueryPagePropNames extends ApiQueryBase { $count = 0; foreach ( $this->select( __METHOD__ ) 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( 'continue', $row->pp_propname ); break; } |