Convert all array() syntax to []
[lhc/web/wiklou.git] / tests / phpunit / includes / changes / TestRecentChangesHelper.php
index 10d4c6e..128e067 100644 (file)
@@ -13,13 +13,13 @@ class TestRecentChangesHelper {
 
                $attribs = array_merge(
                        $this->getDefaultAttributes( $titleText, $timestamp ),
-                       array(
+                       [
                                'rc_user' => $user->getId(),
                                'rc_user_text' => $user->getName(),
                                'rc_this_oldid' => $thisid,
                                'rc_last_oldid' => $lastid,
                                'rc_cur_id' => $curid
-                       )
+                       ]
                );
 
                return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
@@ -30,7 +30,7 @@ class TestRecentChangesHelper {
        ) {
                $attribs = array_merge(
                        $this->getDefaultAttributes( $titleText, $timestamp ),
-                       array(
+                       [
                                'rc_cur_id' => 0,
                                'rc_user' => $user->getId(),
                                'rc_user_text' => $user->getName(),
@@ -43,7 +43,7 @@ class TestRecentChangesHelper {
                                'rc_log_type' => $logType,
                                'rc_log_action' => $logAction,
                                'rc_source' => 'mw.log'
-                       )
+                       ]
                );
 
                return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
@@ -54,14 +54,14 @@ class TestRecentChangesHelper {
        ) {
                $attribs = array_merge(
                        $this->getDefaultAttributes( $titleText, $timestamp ),
-                       array(
+                       [
                                'rc_user' => $user->getId(),
                                'rc_user_text' => $user->getName(),
                                'rc_deleted' => 5,
                                'rc_cur_id' => $curid,
                                'rc_this_oldid' => $thisid,
                                'rc_last_oldid' => $lastid
-                       )
+                       ]
                );
 
                return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
@@ -73,7 +73,7 @@ class TestRecentChangesHelper {
 
                $attribs = array_merge(
                        $this->getDefaultAttributes( $titleText, $timestamp ),
-                       array(
+                       [
                                'rc_user' => $user->getId(),
                                'rc_user_text' => $user->getName(),
                                'rc_this_oldid' => $thisid,
@@ -82,7 +82,7 @@ class TestRecentChangesHelper {
                                'rc_type' => 1,
                                'rc_bot' => 1,
                                'rc_source' => 'mw.new'
-                       )
+                       ]
                );
 
                return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
@@ -100,7 +100,7 @@ class TestRecentChangesHelper {
        public function getCacheEntry( $recentChange ) {
                $rcCacheFactory = new RCCacheEntryFactory(
                        new RequestContext(),
-                       array( 'diff' => 'diff', 'cur' => 'cur', 'last' => 'last' )
+                       [ 'diff' => 'diff', 'cur' => 'cur', 'last' => 'last' ]
                );
                return $rcCacheFactory->newFromRecentChange( $recentChange, false );
        }
@@ -111,7 +111,7 @@ class TestRecentChangesHelper {
 
                $attribs = array_merge(
                        $this->getDefaultAttributes( $titleText, $timestamp ),
-                       array(
+                       [
                                'rc_type' => RC_CATEGORIZE,
                                'rc_user' => $user->getId(),
                                'rc_user_text' => $user->getName(),
@@ -121,14 +121,14 @@ class TestRecentChangesHelper {
                                'rc_comment' => '[[:Testpage]] added to category',
                                'rc_old_len' => 0,
                                'rc_new_len' => 0,
-                       )
+                       ]
                );
 
                return $this->makeRecentChange( $attribs, 0, 0 );
        }
 
        private function getDefaultAttributes( $titleText, $timestamp ) {
-               return array(
+               return [
                        'rc_id' => 545,
                        'rc_user' => 0,
                        'rc_user_text' => '127.0.0.1',
@@ -149,7 +149,7 @@ class TestRecentChangesHelper {
                        'rc_log_action' => '',
                        'rc_params' => '',
                        'rc_source' => 'mw.edit'
-               );
+               ];
        }
 
        public function getTestContext( User $user ) {