X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=includes%2Fregistration%2FExtensionRegistry.php;h=dc53ca455afa41458816e49f7b7c11a81db49fac;hb=bb333d91a4c29e025303d44c705414840b68249c;hp=86be86bba81f56f6b4b0c14e6db5b7d50d965850;hpb=3301e78e5a2e5662952c0564f830a492743f9844;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/registration/ExtensionRegistry.php b/includes/registration/ExtensionRegistry.php index 86be86bba8..dc53ca455a 100644 --- a/includes/registration/ExtensionRegistry.php +++ b/includes/registration/ExtensionRegistry.php @@ -48,14 +48,14 @@ class ExtensionRegistry { * * @var array */ - private $loaded = array(); + private $loaded = []; /** * List of paths that should be loaded * * @var array */ - protected $queued = array(); + protected $queued = []; /** * Items in the JSON file that aren't being @@ -63,7 +63,7 @@ class ExtensionRegistry { * * @var array */ - protected $attributes = array(); + protected $attributes = []; /** * @var ExtensionRegistry @@ -120,10 +120,10 @@ class ExtensionRegistry { } // A few more things to vary the cache on - $versions = array( + $versions = [ 'registration' => self::CACHE_VERSION, 'mediawiki' => $wgVersion - ); + ]; // See if this queue is in APC $key = wfMemcKey( @@ -142,7 +142,7 @@ class ExtensionRegistry { unset( $data['autoload'] ); $this->cache->set( $key, $data, 60 * 60 * 24 ); } - $this->queued = array(); + $this->queued = []; } /** @@ -160,7 +160,7 @@ class ExtensionRegistry { * outside of the installer. */ public function clearQueue() { - $this->queued = array(); + $this->queued = []; } /** @@ -172,10 +172,10 @@ class ExtensionRegistry { */ public function readFromQueue( array $queue ) { global $wgVersion; - $autoloadClasses = array(); - $autoloaderPaths = array(); + $autoloadClasses = []; + $autoloaderPaths = []; $processor = new ExtensionProcessor(); - $incompatible = array(); + $incompatible = []; $coreVersionParser = new CoreVersionChecker( $wgVersion ); foreach ( $queue as $path => $mtime ) { $json = file_get_contents( $path ); @@ -224,7 +224,7 @@ class ExtensionRegistry { } $data = $processor->getExtractedInfo(); // Need to set this so we can += to it later - $data['globals']['wgAutoloadClasses'] = array(); + $data['globals']['wgAutoloadClasses'] = []; $data['autoload'] = $autoloadClasses; $data['autoloaderPaths'] = $autoloaderPaths; return $data; @@ -234,9 +234,7 @@ class ExtensionRegistry { foreach ( $info['globals'] as $key => $val ) { // If a merge strategy is set, read it and remove it from the value // so it doesn't accidentally end up getting set. - // Need to check $val is an array for PHP 5.3 which will return - // true on isset( 'string'['foo'] ). - if ( isset( $val[self::MERGE_STRATEGY] ) && is_array( $val ) ) { + if ( is_array( $val ) && isset( $val[self::MERGE_STRATEGY] ) ) { $mergeStrategy = $val[self::MERGE_STRATEGY]; unset( $val[self::MERGE_STRATEGY] ); } else { @@ -276,13 +274,12 @@ class ExtensionRegistry { foreach ( $info['defines'] as $name => $val ) { define( $name, $val ); } - foreach ( $info['callbacks'] as $cb ) { - call_user_func( $cb ); - } - foreach ( $info['autoloaderPaths'] as $path ) { require_once $path; } + foreach ( $info['callbacks'] as $cb ) { + call_user_func( $cb ); + } $this->loaded += $info['credits']; if ( $info['attributes'] ) { @@ -325,7 +322,7 @@ class ExtensionRegistry { if ( isset( $this->attributes[$name] ) ) { return $this->attributes[$name]; } else { - return array(); + return []; } } @@ -362,7 +359,7 @@ class ExtensionRegistry { return "$dir/$file"; }, $info['AutoloadClasses'] ); } else { - return array(); + return []; } } }