X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FgenerateJsonI18n.php;h=d3041d9e8f50a0de489f231c9fd863f4cd5768c4;hb=5f0489828d87dc1bf32aacbfffa13f289de0d87d;hp=b9c07fbe4dd4760f52f05548cf241c9484c7e07b;hpb=eebc7045342ca86a99954423feb2b595896f185e;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/generateJsonI18n.php b/maintenance/generateJsonI18n.php index b9c07fbe4d..d3041d9e8f 100644 --- a/maintenance/generateJsonI18n.php +++ b/maintenance/generateJsonI18n.php @@ -35,7 +35,7 @@ require_once __DIR__ . '/Maintenance.php'; class GenerateJsonI18n extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Build JSON messages files from a PHP messages file"; + $this->addDescription( 'Build JSON messages files from a PHP messages file' ); $this->addArg( 'phpfile', 'PHP file defining a $messages array', false ); $this->addArg( 'jsondir', 'Directory to write JSON files to', false ); @@ -131,7 +131,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 +187,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] : []; } }