X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Factions%2FCreditsAction.php;h=1332ab489f92fb6b4c9f6455ed0eb202ee96f677;hb=e3bd13db0c285f312e31bb1b7271af4628cca80c;hp=c19e8fa388daa00bdf55a2fd1101d9fe43c56bc2;hpb=4e90d55fdc9d31d93e24cf05687eb7d180806f44;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/actions/CreditsAction.php b/includes/actions/CreditsAction.php index c19e8fa388..1332ab489f 100644 --- a/includes/actions/CreditsAction.php +++ b/includes/actions/CreditsAction.php @@ -49,7 +49,7 @@ class CreditsAction extends FormlessAction { $s = $this->getCredits( -1 ); } - return Html::rawElement( 'div', array( 'id' => 'mw-credits' ), $s ); + return Html::rawElement( 'div', [ 'id' => 'mw-credits' ], $s ); } /** @@ -125,9 +125,9 @@ class CreditsAction extends FormlessAction { } } - $real_names = array(); - $user_names = array(); - $anon_ips = array(); + $real_names = []; + $user_names = []; + $anon_ips = []; # Sift for real versus user names /** @var $user User */ @@ -173,8 +173,8 @@ class CreditsAction extends FormlessAction { } # This is the big list, all mooshed together. We sift for blank strings - $fulllist = array(); - foreach ( array( $real, $user, $anon, $others_link ) as $s ) { + $fulllist = []; + foreach ( [ $real, $user, $anon, $others_link ] as $s ) { if ( $s !== false ) { array_push( $fulllist, $s ); } @@ -234,8 +234,8 @@ class CreditsAction extends FormlessAction { return Linker::linkKnown( $this->getTitle(), $this->msg( 'others' )->escaped(), - array(), - array( 'action' => 'credits' ) + [], + [ 'action' => 'credits' ] ); } }