X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2FMovePageTest.php;h=2bde97b66bf4ec6182aacb23ea8d709bbfbc03be;hb=f28a0ccaabf332e128fd1da1ff27d27eb268920a;hp=0ef2fa630fc1492dcfb366d984fa7cd0bbf8e733;hpb=d24b74ce2db24799dbaa2abe0277a48694ad2ebd;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/MovePageTest.php b/tests/phpunit/includes/MovePageTest.php index 0ef2fa630f..2bde97b66b 100644 --- a/tests/phpunit/includes/MovePageTest.php +++ b/tests/phpunit/includes/MovePageTest.php @@ -28,16 +28,16 @@ class MovePageTest extends MediaWikiTestCase { * This should be kept in sync with TitleTest::provideTestIsValidMoveOperation */ public static function provideIsValidMove() { - return array( + return [ // for MovePage::isValidMove - array( 'Test', 'Test', 'selfmove' ), - array( 'Special:FooBar', 'Test', 'immobile-source-namespace' ), - array( 'Test', 'Special:FooBar', 'immobile-target-namespace' ), - array( 'MediaWiki:Common.js', 'Help:Some wikitext page', 'bad-target-model' ), - array( 'Page', 'File:Test.jpg', 'nonfile-cannot-move-to-file' ), + [ 'Test', 'Test', 'selfmove' ], + [ 'Special:FooBar', 'Test', 'immobile-source-namespace' ], + [ 'Test', 'Special:FooBar', 'immobile-target-namespace' ], + [ 'MediaWiki:Common.js', 'Help:Some wikitext page', 'bad-target-model' ], + [ 'Page', 'File:Test.jpg', 'nonfile-cannot-move-to-file' ], // for MovePage::isValidFileMove - array( 'File:Test.jpg', 'Page', 'imagenocrossnamespace' ), - ); + [ 'File:Test.jpg', 'Page', 'imagenocrossnamespace' ], + ]; } /**