diff options
author | Siebrand Mazeland <siebrand@kitano.nl> | 2014-04-22 22:55:25 +0200 |
---|---|---|
committer | Siebrand <siebrand@kitano.nl> | 2014-04-22 21:25:22 +0000 |
commit | a50a5d9da7a0a8c4030e8ad65cbb2a112024f8e9 (patch) | |
tree | c7f66fc6af76901eff813d07e4a206a68a161859 /maintenance/updateSearchIndex.php | |
parent | cbf4776dc862e245d947f77b29e9c5b687af7159 (diff) | |
download | mediawikicore-a50a5d9da7a0a8c4030e8ad65cbb2a112024f8e9.tar.gz mediawikicore-a50a5d9da7a0a8c4030e8ad65cbb2a112024f8e9.zip |
Pass phpcs-strict on maintenance/ (1/8)
Change-Id: Ib68a7cf4251e8f4c71233df869673f4c5d3cf84c
Diffstat (limited to 'maintenance/updateSearchIndex.php')
-rw-r--r-- | maintenance/updateSearchIndex.php | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/maintenance/updateSearchIndex.php b/maintenance/updateSearchIndex.php index 0691bee81123..68a51bd9a582 100644 --- a/maintenance/updateSearchIndex.php +++ b/maintenance/updateSearchIndex.php @@ -42,8 +42,18 @@ class UpdateSearchIndex extends Maintenance { $this->mDescription = "Script for periodic off-peak updating of the search index"; $this->addOption( 's', 'starting timestamp', false, true ); $this->addOption( 'e', 'Ending timestamp', false, true ); - $this->addOption( 'p', 'File for saving/loading timestamps, searchUpdate.WIKI_ID.pos by default', false, true ); - $this->addOption( 'l', 'How long the searchindex and revision tables will be locked for', false, true ); + $this->addOption( + 'p', + 'File for saving/loading timestamps, searchUpdate.WIKI_ID.pos by default', + false, + true + ); + $this->addOption( + 'l', + 'How long the searchindex and revision tables will be locked for', + false, + true + ); } public function getDbType() { |