Merge "RCFilters: Add marker between old and new changes in enhanced mode"
[lhc/web/wiklou.git] / tests / phpunit / includes / media / SVGTest.php
index 1361a92..4a986b4 100644 (file)
@@ -28,14 +28,14 @@ class SvgTest extends MediaWikiMediaTestCase {
                $this->assertEquals( $res, $expected );
        }
 
-       public function providerGetIndependentMetaArray() {
-               return array(
-                       array( 'Tux.svg', array(
+       public static function providerGetIndependentMetaArray() {
+               return [
+                       [ 'Tux.svg', [
                                'ObjectName' => 'Tux',
                                'ImageDescription' =>
                                        'For more information see: http://commons.wikimedia.org/wiki/Image:Tux.svg',
-                       ) ),
-                       array( 'Wikimedia-logo.svg', array() )
-               );
+                       ] ],
+                       [ 'Wikimedia-logo.svg', [] ]
+               ];
        }
 }