Convert all array() syntax to []
[lhc/web/wiklou.git] / tests / phpunit / includes / libs / composer / ComposerJsonTest.php
index 0c58b65..2072752 100644 (file)
@@ -12,10 +12,10 @@ class ComposerJsonTest extends MediaWikiTestCase {
        }
 
        public static function provideGetHash() {
-               return array(
-                       array( 'json', 'cc6e7fc565b246cb30b0cac103a2b31e' ),
-                       array( 'json2', '19921dd1fc457f1b00561da932432001' ),
-               );
+               return [
+                       [ 'json', 'cc6e7fc565b246cb30b0cac103a2b31e' ],
+                       [ 'json2', '19921dd1fc457f1b00561da932432001' ],
+               ];
        }
 
        /**
@@ -32,19 +32,19 @@ class ComposerJsonTest extends MediaWikiTestCase {
         */
        public function testGetRequiredDependencies() {
                $json = new ComposerJson( $this->json );
-               $this->assertArrayEquals( array(
+               $this->assertArrayEquals( [
                        'cdb/cdb' => '1.0.0',
                        'cssjanus/cssjanus' => '1.1.1',
                        'leafo/lessphp' => '0.5.0',
                        'psr/log' => '1.0.0',
-               ), $json->getRequiredDependencies(), false, true );
+               ], $json->getRequiredDependencies(), false, true );
        }
 
        public static function provideNormalizeVersion() {
-               return array(
-                       array( 'v1.0.0', '1.0.0' ),
-                       array( '0.0.5', '0.0.5' ),
-               );
+               return [
+                       [ 'v1.0.0', '1.0.0' ],
+                       [ '0.0.5', '0.0.5' ],
+               ];
        }
 
        /**