Merge "Title::newFromText: Cast integers to strings"
[lhc/web/wiklou.git] / maintenance / importSites.php
index 4537943..c5c00aa 100644 (file)
@@ -17,12 +17,13 @@ class ImportSites extends Maintenance {
        public function __construct() {
                $this->mDescription = 'Imports site definitions from XML into the sites table.';
 
-               $this->addArg( 'file', 'An XML file containing site definitions (see docs/sitelist.txt). Use "php://stdin" to read from stdin.', true );
+               $this->addArg( 'file', 'An XML file containing site definitions (see docs/sitelist.txt). ' .
+                       'Use "php://stdin" to read from stdin.', true
+               );
 
                parent::__construct();
        }
 
-
        /**
         * Do the import.
         */