Merge "Add constants for schema migration feature flags"
[lhc/web/wiklou.git] / maintenance / getConfiguration.php
index b1140ec..3c679e6 100644 (file)
@@ -34,18 +34,18 @@ class GetConfiguration extends Maintenance {
 
        protected $regex = null;
 
-       protected $settings_list = array();
+       protected $settings_list = [];
 
        /**
         * List of format output internally supported.
         * Each item MUST be lower case.
         */
-       protected static $outFormats = array(
+       protected static $outFormats = [
                'json',
                'php',
                'serialize',
                'vardump',
-       );
+       ];
 
        public function __construct() {
                parent::__construct();
@@ -53,7 +53,7 @@ class GetConfiguration extends Maintenance {
                $this->addOption( 'regex', 'regex to filter variables with', false, true );
                $this->addOption( 'iregex', 'same as --regex but case insensitive', false, true );
                $this->addOption( 'settings', 'Space-separated list of wg* variables', false, true );
-               $this->addOption( 'format', join( ', ', self::$outFormats ), false, true );
+               $this->addOption( 'format', implode( ', ', self::$outFormats ), false, true );
        }
 
        protected function validateParamsAndArgs() {
@@ -112,7 +112,7 @@ class GetConfiguration extends Maintenance {
 
        public function execute() {
                // Settings we will display
-               $res = array();
+               $res = [];
 
                # Sane default: dump any wg / wmg variable
                if ( !$this->regex && !$this->getOption( 'settings' ) ) {
@@ -121,7 +121,7 @@ class GetConfiguration extends Maintenance {
 
                # Filter out globals based on the regex
                if ( $this->regex ) {
-                       $res = array();
+                       $res = [];
                        foreach ( $GLOBALS as $name => $value ) {
                                if ( preg_match( $this->regex, $name ) ) {
                                        $res[$name] = $value;