Convert all array() syntax to []
[lhc/web/wiklou.git] / tests / phpunit / includes / api / query / ApiQueryContinue2Test.php
index cd73522..8f11a51 100644 (file)
@@ -50,18 +50,18 @@ class ApiQueryContinue2Test extends ApiQueryContinueTestBase {
        public function testA() {
                $this->mVerbose = false;
                $mk = function ( $g, $p, $gDir ) {
-                       return array(
+                       return [
                                'generator' => 'allpages',
                                'gapprefix' => 'AQCT73462-',
                                'prop' => 'links',
                                'gaplimit' => "$g",
                                'pllimit' => "$p",
                                'gapdir' => $gDir ? "ascending" : "descending",
-                       );
+                       ];
                };
                // generator + 1 prop + 1 list
                $data = $this->query( $mk( 99, 99, true ), 1, 'g1p', false ) +
-                       array( 'batchcomplete' => true );
+                       [ 'batchcomplete' => true ];
                $this->checkC( $data, $mk( 1, 1, true ), 6, 'g1p-11t' );
                $this->checkC( $data, $mk( 2, 2, true ), 3, 'g1p-22t' );
                $this->checkC( $data, $mk( 1, 1, false ), 6, 'g1p-11f' );