Merge "Make unused variable optional in ChangesList::insertDiffHist"
[lhc/web/wiklou.git] / maintenance / patchSql.php
index 1f77bdb..43fbd38 100644 (file)
@@ -32,7 +32,7 @@ require_once __DIR__ . '/Maintenance.php';
 class PatchSql extends Maintenance {
        public function __construct() {
                parent::__construct();
-               $this->mDescription = "Run an SQL file into the DB, replacing prefix and charset vars";
+               $this->addDescription( 'Run an SQL file into the DB, replacing prefix and charset vars' );
                $this->addArg(
                        'patch-name',
                        'Name of the patch file, either full path or in maintenance/archives'
@@ -46,11 +46,11 @@ class PatchSql extends Maintenance {
        public function execute() {
                $dbw = $this->getDB( DB_MASTER );
                foreach ( $this->mArgs as $arg ) {
-                       $files = array(
+                       $files = [
                                $arg,
                                $dbw->patchPath( $arg ),
                                $dbw->patchPath( "patch-$arg.sql" ),
-                       );
+                       ];
                        foreach ( $files as $file ) {
                                if ( file_exists( $file ) ) {
                                        $this->output( "$file ...\n" );