@@ -4,10 +4,8 @@ |
||
| 4 | 4 | |
| 5 | 5 | namespace Composer\Autoload; |
| 6 | 6 | |
| 7 | -class ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211 |
|
| 8 | -{ |
|
| 9 | - public static function getInitializer(ClassLoader $loader) |
|
| 10 | - { |
|
| 7 | +class ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211 { |
|
| 8 | + public static function getInitializer(ClassLoader $loader) { |
|
| 11 | 9 | return \Closure::bind(function () use ($loader) { |
| 12 | 10 | |
| 13 | 11 | }, null, ClassLoader::class); |
@@ -40,8 +40,7 @@ discard block |
||
| 40 | 40 | * @see http://www.php-fig.org/psr/psr-0/ |
| 41 | 41 | * @see http://www.php-fig.org/psr/psr-4/ |
| 42 | 42 | */ |
| 43 | -class ClassLoader |
|
| 44 | -{ |
|
| 43 | +class ClassLoader { |
|
| 45 | 44 | // PSR-4 |
| 46 | 45 | private $prefixLengthsPsr4 = array(); |
| 47 | 46 | private $prefixDirsPsr4 = array(); |
@@ -57,8 +56,7 @@ discard block |
||
| 57 | 56 | private $missingClasses = array(); |
| 58 | 57 | private $apcuPrefix; |
| 59 | 58 | |
| 60 | - public function getPrefixes() |
|
| 61 | - { |
|
| 59 | + public function getPrefixes() { |
|
| 62 | 60 | if (!empty($this->prefixesPsr0)) { |
| 63 | 61 | return call_user_func_array('array_merge', $this->prefixesPsr0); |
| 64 | 62 | } |
@@ -66,31 +64,26 @@ discard block |
||
| 66 | 64 | return array(); |
| 67 | 65 | } |
| 68 | 66 | |
| 69 | - public function getPrefixesPsr4() |
|
| 70 | - { |
|
| 67 | + public function getPrefixesPsr4() { |
|
| 71 | 68 | return $this->prefixDirsPsr4; |
| 72 | 69 | } |
| 73 | 70 | |
| 74 | - public function getFallbackDirs() |
|
| 75 | - { |
|
| 71 | + public function getFallbackDirs() { |
|
| 76 | 72 | return $this->fallbackDirsPsr0; |
| 77 | 73 | } |
| 78 | 74 | |
| 79 | - public function getFallbackDirsPsr4() |
|
| 80 | - { |
|
| 75 | + public function getFallbackDirsPsr4() { |
|
| 81 | 76 | return $this->fallbackDirsPsr4; |
| 82 | 77 | } |
| 83 | 78 | |
| 84 | - public function getClassMap() |
|
| 85 | - { |
|
| 79 | + public function getClassMap() { |
|
| 86 | 80 | return $this->classMap; |
| 87 | 81 | } |
| 88 | 82 | |
| 89 | 83 | /** |
| 90 | 84 | * @param array $classMap Class to filename map |
| 91 | 85 | */ |
| 92 | - public function addClassMap(array $classMap) |
|
| 93 | - { |
|
| 86 | + public function addClassMap(array $classMap) { |
|
| 94 | 87 | if ($this->classMap) { |
| 95 | 88 | $this->classMap = array_merge($this->classMap, $classMap); |
| 96 | 89 | } else { |
@@ -106,8 +99,7 @@ discard block |
||
| 106 | 99 | * @param array|string $paths The PSR-0 root directories |
| 107 | 100 | * @param bool $prepend Whether to prepend the directories |
| 108 | 101 | */ |
| 109 | - public function add($prefix, $paths, $prepend = false) |
|
| 110 | - { |
|
| 102 | + public function add($prefix, $paths, $prepend = false) { |
|
| 111 | 103 | if (!$prefix) { |
| 112 | 104 | if ($prepend) { |
| 113 | 105 | $this->fallbackDirsPsr0 = array_merge( |
@@ -153,8 +145,7 @@ discard block |
||
| 153 | 145 | * |
| 154 | 146 | * @throws \InvalidArgumentException |
| 155 | 147 | */ |
| 156 | - public function addPsr4($prefix, $paths, $prepend = false) |
|
| 157 | - { |
|
| 148 | + public function addPsr4($prefix, $paths, $prepend = false) { |
|
| 158 | 149 | if (!$prefix) { |
| 159 | 150 | // Register directories for the root namespace. |
| 160 | 151 | if ($prepend) { |
@@ -198,8 +189,7 @@ discard block |
||
| 198 | 189 | * @param string $prefix The prefix |
| 199 | 190 | * @param array|string $paths The PSR-0 base directories |
| 200 | 191 | */ |
| 201 | - public function set($prefix, $paths) |
|
| 202 | - { |
|
| 192 | + public function set($prefix, $paths) { |
|
| 203 | 193 | if (!$prefix) { |
| 204 | 194 | $this->fallbackDirsPsr0 = (array) $paths; |
| 205 | 195 | } else { |
@@ -216,8 +206,7 @@ discard block |
||
| 216 | 206 | * |
| 217 | 207 | * @throws \InvalidArgumentException |
| 218 | 208 | */ |
| 219 | - public function setPsr4($prefix, $paths) |
|
| 220 | - { |
|
| 209 | + public function setPsr4($prefix, $paths) { |
|
| 221 | 210 | if (!$prefix) { |
| 222 | 211 | $this->fallbackDirsPsr4 = (array) $paths; |
| 223 | 212 | } else { |
@@ -235,8 +224,7 @@ discard block |
||
| 235 | 224 | * |
| 236 | 225 | * @param bool $useIncludePath |
| 237 | 226 | */ |
| 238 | - public function setUseIncludePath($useIncludePath) |
|
| 239 | - { |
|
| 227 | + public function setUseIncludePath($useIncludePath) { |
|
| 240 | 228 | $this->useIncludePath = $useIncludePath; |
| 241 | 229 | } |
| 242 | 230 | |
@@ -246,8 +234,7 @@ discard block |
||
| 246 | 234 | * |
| 247 | 235 | * @return bool |
| 248 | 236 | */ |
| 249 | - public function getUseIncludePath() |
|
| 250 | - { |
|
| 237 | + public function getUseIncludePath() { |
|
| 251 | 238 | return $this->useIncludePath; |
| 252 | 239 | } |
| 253 | 240 | |
@@ -257,8 +244,7 @@ discard block |
||
| 257 | 244 | * |
| 258 | 245 | * @param bool $classMapAuthoritative |
| 259 | 246 | */ |
| 260 | - public function setClassMapAuthoritative($classMapAuthoritative) |
|
| 261 | - { |
|
| 247 | + public function setClassMapAuthoritative($classMapAuthoritative) { |
|
| 262 | 248 | $this->classMapAuthoritative = $classMapAuthoritative; |
| 263 | 249 | } |
| 264 | 250 | |
@@ -267,8 +253,7 @@ discard block |
||
| 267 | 253 | * |
| 268 | 254 | * @return bool |
| 269 | 255 | */ |
| 270 | - public function isClassMapAuthoritative() |
|
| 271 | - { |
|
| 256 | + public function isClassMapAuthoritative() { |
|
| 272 | 257 | return $this->classMapAuthoritative; |
| 273 | 258 | } |
| 274 | 259 | |
@@ -277,8 +262,7 @@ discard block |
||
| 277 | 262 | * |
| 278 | 263 | * @param string|null $apcuPrefix |
| 279 | 264 | */ |
| 280 | - public function setApcuPrefix($apcuPrefix) |
|
| 281 | - { |
|
| 265 | + public function setApcuPrefix($apcuPrefix) { |
|
| 282 | 266 | $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; |
| 283 | 267 | } |
| 284 | 268 | |
@@ -287,8 +271,7 @@ discard block |
||
| 287 | 271 | * |
| 288 | 272 | * @return string|null |
| 289 | 273 | */ |
| 290 | - public function getApcuPrefix() |
|
| 291 | - { |
|
| 274 | + public function getApcuPrefix() { |
|
| 292 | 275 | return $this->apcuPrefix; |
| 293 | 276 | } |
| 294 | 277 | |
@@ -297,16 +280,14 @@ discard block |
||
| 297 | 280 | * |
| 298 | 281 | * @param bool $prepend Whether to prepend the autoloader or not |
| 299 | 282 | */ |
| 300 | - public function register($prepend = false) |
|
| 301 | - { |
|
| 283 | + public function register($prepend = false) { |
|
| 302 | 284 | spl_autoload_register(array($this, 'loadClass'), true, $prepend); |
| 303 | 285 | } |
| 304 | 286 | |
| 305 | 287 | /** |
| 306 | 288 | * Unregisters this instance as an autoloader. |
| 307 | 289 | */ |
| 308 | - public function unregister() |
|
| 309 | - { |
|
| 290 | + public function unregister() { |
|
| 310 | 291 | spl_autoload_unregister(array($this, 'loadClass')); |
| 311 | 292 | } |
| 312 | 293 | |
@@ -316,8 +297,7 @@ discard block |
||
| 316 | 297 | * @param string $class The name of the class |
| 317 | 298 | * @return bool|null True if loaded, null otherwise |
| 318 | 299 | */ |
| 319 | - public function loadClass($class) |
|
| 320 | - { |
|
| 300 | + public function loadClass($class) { |
|
| 321 | 301 | if ($file = $this->findFile($class)) { |
| 322 | 302 | includeFile($file); |
| 323 | 303 | |
@@ -332,8 +312,7 @@ discard block |
||
| 332 | 312 | * |
| 333 | 313 | * @return string|false The path if found, false otherwise |
| 334 | 314 | */ |
| 335 | - public function findFile($class) |
|
| 336 | - { |
|
| 315 | + public function findFile($class) { |
|
| 337 | 316 | // class map lookup |
| 338 | 317 | if (isset($this->classMap[$class])) { |
| 339 | 318 | return $this->classMap[$class]; |
@@ -367,8 +346,7 @@ discard block |
||
| 367 | 346 | return $file; |
| 368 | 347 | } |
| 369 | 348 | |
| 370 | - private function findFileWithExtension($class, $ext) |
|
| 371 | - { |
|
| 349 | + private function findFileWithExtension($class, $ext) { |
|
| 372 | 350 | // PSR-4 lookup |
| 373 | 351 | $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
| 374 | 352 | |
@@ -439,7 +417,6 @@ discard block |
||
| 439 | 417 | * |
| 440 | 418 | * Prevents access to $this/self from included files. |
| 441 | 419 | */ |
| 442 | -function includeFile($file) |
|
| 443 | -{ |
|
| 420 | +function includeFile($file) { |
|
| 444 | 421 | include $file; |
| 445 | 422 | } |
@@ -2,19 +2,16 @@ |
||
| 2 | 2 | |
| 3 | 3 | // autoload_real.php @generated by Composer |
| 4 | 4 | |
| 5 | -class ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211 |
|
| 6 | -{ |
|
| 5 | +class ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211 { |
|
| 7 | 6 | private static $loader; |
| 8 | 7 | |
| 9 | - public static function loadClassLoader($class) |
|
| 10 | - { |
|
| 8 | + public static function loadClassLoader($class) { |
|
| 11 | 9 | if ('Composer\Autoload\ClassLoader' === $class) { |
| 12 | 10 | require __DIR__ . '/ClassLoader.php'; |
| 13 | 11 | } |
| 14 | 12 | } |
| 15 | 13 | |
| 16 | - public static function getLoader() |
|
| 17 | - { |
|
| 14 | + public static function getLoader() { |
|
| 18 | 15 | if (null !== self::$loader) { |
| 19 | 16 | return self::$loader; |
| 20 | 17 | } |