Passed
Push — master ( fce6df...8e01ff )
by Georg
14:04 queued 11s
created

ComposerAutoloaderInitUserStatus::getLoader()   B

Complexity

Conditions 7
Paths 16

Size

Total Lines 26
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 7
eloc 16
c 1
b 0
f 0
nc 16
nop 0
dl 0
loc 26
rs 8.8333
1
<?php
2
3
// autoload_real.php @generated by Composer
4
5
class ComposerAutoloaderInitUserStatus
6
{
7
    private static $loader;
8
9
    public static function loadClassLoader($class)
10
    {
11
        if ('Composer\Autoload\ClassLoader' === $class) {
12
            require __DIR__ . '/ClassLoader.php';
13
        }
14
    }
15
16
    /**
17
     * @return \Composer\Autoload\ClassLoader
18
     */
19
    public static function getLoader()
20
    {
21
        if (null !== self::$loader) {
22
            return self::$loader;
23
        }
24
25
        spl_autoload_register(array('ComposerAutoloaderInitUserStatus', 'loadClassLoader'), true, true);
26
        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
        spl_autoload_unregister(array('ComposerAutoloaderInitUserStatus', 'loadClassLoader'));
28
29
        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
        if ($useStaticLoader) {
31
            require_once __DIR__ . '/autoload_static.php';
32
33
            call_user_func(\Composer\Autoload\ComposerStaticInitUserStatus::getInitializer($loader));
34
        } else {
35
            $classMap = require __DIR__ . '/autoload_classmap.php';
36
            if ($classMap) {
37
                $loader->addClassMap($classMap);
38
            }
39
        }
40
41
        $loader->setClassMapAuthoritative(true);
42
        $loader->register(true);
43
44
        return $loader;
45
    }
46
}
47