Merge "Add support for PHP7 random_bytes in favor of mcrypt_create_iv"
[lhc/web/wiklou.git] / maintenance / generateJsonI18n.php
index 0b4f2ed..a84f2ae 100644 (file)
@@ -108,6 +108,7 @@ class GenerateJsonI18n extends Maintenance {
                if ( !is_readable( $phpfile ) ) {
                        $this->error( "Error reading $phpfile", 1 );
                }
+               $messages = null;
                include $phpfile;
                $phpfileContents = file_get_contents( $phpfile );
 
@@ -131,7 +132,7 @@ class GenerateJsonI18n extends Maintenance {
                        ) );
                        // Make sure the @metadata key is the first key in the output
                        $langmsgs = array_merge(
-                               array( '@metadata' => array( 'authors' => $authors ) ),
+                               [ '@metadata' => [ 'authors' => $authors ] ],
                                $langmsgs
                        );
 
@@ -187,7 +188,7 @@ class GenerateJsonI18n extends Maintenance {
                $matches = null;
                preg_match_all( '/@author (.*?)$/m', $comment, $matches );
 
-               return $matches && $matches[1] ? $matches[1] : array();
+               return $matches && $matches[1] ? $matches[1] : [];
        }
 }