X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Ffilerepo%2FRepoGroup.php;h=89287af0bd424d629059a78d28bd22a8a9118c05;hp=b7977900a32e643193b40528584d5f6c77df48e8;hb=23b7f3bbd553183a21d785bae175249efad5ee5d;hpb=2c7a212afa50fe329801180571db01f62e77c708 diff --git a/includes/filerepo/RepoGroup.php b/includes/filerepo/RepoGroup.php index b7977900a3..89287af0bd 100644 --- a/includes/filerepo/RepoGroup.php +++ b/includes/filerepo/RepoGroup.php @@ -140,7 +140,7 @@ class RepoGroup { && empty( $options['private'] ) && empty( $options['latest'] ) ) { - $time = isset( $options['time'] ) ? $options['time'] : ''; + $time = $options['time'] ?? ''; if ( $this->cache->has( $dbkey, $time, 60 ) ) { return $this->cache->get( $dbkey, $time ); } @@ -163,7 +163,7 @@ class RepoGroup { } } - $image = $image ? $image : false; // type sanity + $image = $image ?: false; // type sanity # Cache file existence or non-existence if ( $useCache && ( !$image || $image->isCacheable() ) ) { $this->cache->set( $dbkey, $time, $image ); @@ -372,8 +372,7 @@ class RepoGroup { $this->initialiseRepos(); } foreach ( $this->foreignRepos as $repo ) { - $args = array_merge( [ $repo ], $params ); - if ( call_user_func_array( $callback, $args ) ) { + if ( $callback( $repo, ...$params ) ) { return true; } }