Type hint against LinkTarget in WatchedItemStore
[lhc/web/wiklou.git] / tests / phpunit / includes / GlobalFunctions / wfBaseNameTest.php
index 705730a..78e09e6 100644 (file)
@@ -13,28 +13,28 @@ class WfBaseNameTest extends MediaWikiTestCase {
        }
 
        public static function providePaths() {
-               return array(
-                       array( '', '' ),
-                       array( '/', '' ),
-                       array( '\\', '' ),
-                       array( '//', '' ),
-                       array( '\\\\', '' ),
-                       array( 'a', 'a' ),
-                       array( 'aaaa', 'aaaa' ),
-                       array( '/a', 'a' ),
-                       array( '\\a', 'a' ),
-                       array( '/aaaa', 'aaaa' ),
-                       array( '\\aaaa', 'aaaa' ),
-                       array( '/aaaa/', 'aaaa' ),
-                       array( '\\aaaa\\', 'aaaa' ),
-                       array( '\\aaaa\\', 'aaaa' ),
-                       array(
+               return [
+                       [ '', '' ],
+                       [ '/', '' ],
+                       [ '\\', '' ],
+                       [ '//', '' ],
+                       [ '\\\\', '' ],
+                       [ 'a', 'a' ],
+                       [ 'aaaa', 'aaaa' ],
+                       [ '/a', 'a' ],
+                       [ '\\a', 'a' ],
+                       [ '/aaaa', 'aaaa' ],
+                       [ '\\aaaa', 'aaaa' ],
+                       [ '/aaaa/', 'aaaa' ],
+                       [ '\\aaaa\\', 'aaaa' ],
+                       [ '\\aaaa\\', 'aaaa' ],
+                       [
                                '/mnt/upload3/wikipedia/en/thumb/8/8b/'
                                        . 'Zork_Grand_Inquisitor_box_cover.jpg/93px-Zork_Grand_Inquisitor_box_cover.jpg',
                                '93px-Zork_Grand_Inquisitor_box_cover.jpg'
-                       ),
-                       array( 'C:\\Progra~1\\Wikime~1\\Wikipe~1\\VIEWER.EXE', 'VIEWER.EXE' ),
-                       array( 'Östergötland_coat_of_arms.png', 'Östergötland_coat_of_arms.png' ),
-               );
+                       ],
+                       [ 'C:\\Progra~1\\Wikime~1\\Wikipe~1\\VIEWER.EXE', 'VIEWER.EXE' ],
+                       [ 'Östergötland_coat_of_arms.png', 'Östergötland_coat_of_arms.png' ],
+               ];
        }
 }