Test Failed
Push — master ( 4f2669...e5607e )
by Joe
02:33
created

ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211   A

Complexity

Total Complexity 11

Size/Duplication

Total Lines 48
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 48
rs 10
c 0
b 0
f 0
wmc 11
lcom 1
cbo 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A loadClassLoader() 0 6 2
D getLoader() 0 36 9
1
<?php
2
3
// autoload_real.php @generated by Composer
4
5
class ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
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
    public static function getLoader()
0 ignored issues
show
Documentation introduced by
The return type could not be reliably inferred; please add a @return annotation.

Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a @return annotation as described here.

Loading history...
17
    {
18
        if (null !== self::$loader) {
19
            return self::$loader;
20
        }
21
22
        spl_autoload_register(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader'), true, true);
23
        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
        spl_autoload_unregister(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader'));
25
26
        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
        if ($useStaticLoader) {
28
            require_once __DIR__ . '/autoload_static.php';
29
30
            call_user_func(\Composer\Autoload\ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211::getInitializer($loader));
31
        } else {
32
            $map = require __DIR__ . '/autoload_namespaces.php';
33
            foreach ($map as $namespace => $path) {
34
                $loader->set($namespace, $path);
35
            }
36
37
            $map = require __DIR__ . '/autoload_psr4.php';
38
            foreach ($map as $namespace => $path) {
39
                $loader->setPsr4($namespace, $path);
40
            }
41
42
            $classMap = require __DIR__ . '/autoload_classmap.php';
43
            if ($classMap) {
44
                $loader->addClassMap($classMap);
45
            }
46
        }
47
48
        $loader->register(true);
49
50
        return $loader;
51
    }
52
}
53