X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FAutopromote.php;h=56fbb07f88f6286788c5a7d89fd0b7756ecb91c3;hb=5473e9e9eeea71b0a32b2b0e703529e196721407;hp=d492d196af669809a21e1420e900c1b3072507aa;hpb=13d083b2065092b4bc48288a8ecdee9270fdb19e;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Autopromote.php b/includes/Autopromote.php index d492d196af..56fbb07f88 100644 --- a/includes/Autopromote.php +++ b/includes/Autopromote.php @@ -35,7 +35,7 @@ class Autopromote { public static function getAutopromoteGroups( User $user ) { global $wgAutopromote; - $promote = array(); + $promote = []; foreach ( $wgAutopromote as $group => $cond ) { if ( self::recCheckCondition( $cond, $user ) ) { @@ -43,7 +43,7 @@ class Autopromote { } } - Hooks::run( 'GetAutoPromoteGroups', array( $user, &$promote ) ); + Hooks::run( 'GetAutoPromoteGroups', [ $user, &$promote ] ); return $promote; } @@ -63,7 +63,7 @@ class Autopromote { public static function getAutopromoteOnceGroups( User $user, $event ) { global $wgAutopromoteOnce; - $promote = array(); + $promote = []; if ( isset( $wgAutopromoteOnce[$event] ) && count( $wgAutopromoteOnce[$event] ) ) { $currentGroups = $user->getGroups(); @@ -104,7 +104,7 @@ class Autopromote { * @return bool Whether the condition is true */ private static function recCheckCondition( $cond, User $user ) { - $validOps = array( '&', '|', '^', '!' ); + $validOps = [ '&', '|', '^', '!' ]; if ( is_array( $cond ) && count( $cond ) >= 2 && in_array( $cond[0], $validOps ) ) { # Recursive condition @@ -144,7 +144,7 @@ class Autopromote { // If we got here, the array presumably does not contain other conditions; // it's not recursive. Pass it off to self::checkCondition. if ( !is_array( $cond ) ) { - $cond = array( $cond ); + $cond = [ $cond ]; } return self::checkCondition( $cond, $user ); @@ -197,8 +197,8 @@ class Autopromote { return in_array( 'bot', User::getGroupPermissions( $user->getGroups() ) ); default: $result = null; - Hooks::run( 'AutopromoteCondition', array( $cond[0], - array_slice( $cond, 1 ), $user, &$result ) ); + Hooks::run( 'AutopromoteCondition', [ $cond[0], + array_slice( $cond, 1 ), $user, &$result ] ); if ( $result === null ) { throw new MWException( "Unrecognized condition {$cond[0]} for autopromotion!" ); }