Allow the signature button wikitext to be overridden locally
[lhc/web/wiklou.git] / maintenance / sqlite.php
index 96a8a38..454c506 100644 (file)
@@ -31,7 +31,7 @@ require_once __DIR__ . '/Maintenance.php';
 class SqliteMaintenance extends Maintenance {
        public function __construct() {
                parent::__construct();
-               $this->mDescription = "Performs some operations specific to SQLite database backend";
+               $this->addDescription( 'Performs some operations specific to SQLite database backend' );
                $this->addOption(
                        'vacuum',
                        'Clean up database by removing deleted pages. Decreases database file size'
@@ -128,10 +128,10 @@ class SqliteMaintenance extends Maintenance {
        }
 
        private function checkSyntax() {
-               if ( !Sqlite::IsPresent() ) {
+               if ( !Sqlite::isPresent() ) {
                        $this->error( "Error: SQLite support not found\n" );
                }
-               $files = array( $this->getOption( 'check-syntax' ) );
+               $files = [ $this->getOption( 'check-syntax' ) ];
                $files += $this->mArgs;
                $result = Sqlite::checkSqlSyntax( $files );
                if ( $result === true ) {