Merge "Make use of …::class feature in ContentHandler/DatabaseUpdater"
[lhc/web/wiklou.git] / maintenance / sqlite.php
index b11f1c8..2d4e82a 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'
@@ -59,7 +59,7 @@ class SqliteMaintenance extends Maintenance {
                        return;
                }
 
-               $this->db = wfGetDB( DB_MASTER );
+               $this->db = $this->getDB( DB_MASTER );
 
                if ( $this->db->getType() != 'sqlite' ) {
                        $this->error( "This maintenance script requires a SQLite database.\n" );
@@ -131,7 +131,7 @@ class SqliteMaintenance extends Maintenance {
                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 ) {