ComposerStaticInite5eca23334d547f58d55dd3321eace6e   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 13
c 1
b 0
f 0
dl 0
loc 23
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getInitializer() 0 7 1
1
<?php
2
3
// autoload_static.php @generated by Composer
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInite5eca23334d547f58d55dd3321eace6e
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'K' => 
11
        array (
12
            'Kristuff\\Mishell\\' => 17,
13
        ),
14
    );
15
16
    public static $prefixDirsPsr4 = array (
17
        'Kristuff\\Mishell\\' => 
18
        array (
19
            0 => __DIR__ . '/../..' . '/lib',
20
        ),
21
    );
22
23
    public static $classMap = array (
24
        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
25
        'Kristuff\\Mishell\\Console' => __DIR__ . '/../..' . '/lib/Console.php',
26
        'Kristuff\\Mishell\\Program' => __DIR__ . '/../..' . '/lib/Program.php',
0 ignored issues
show
Bug introduced by
The property prefixLengthsPsr4 is declared private in Composer\Autoload\ClassLoader and cannot be accessed from this context.
Loading history...
27
        'Kristuff\\Mishell\\ShellColoredPrinter' => __DIR__ . '/../..' . '/lib/ShellColoredPrinter.php',
0 ignored issues
show
Bug introduced by
The property prefixDirsPsr4 is declared private in Composer\Autoload\ClassLoader and cannot be accessed from this context.
Loading history...
28
        'Kristuff\\Mishell\\ShellPrinter' => __DIR__ . '/../..' . '/lib/ShellPrinter.php',
29
        'Kristuff\\Mishell\\ShellTablePrinter' => __DIR__ . '/../..' . '/lib/ShellTablePrinter.php',
30
    );
31
32
    public static function getInitializer(ClassLoader $loader)
33
    {
34
        return \Closure::bind(function () use ($loader) {
35
            $loader->prefixLengthsPsr4 = ComposerStaticInite5eca23334d547f58d55dd3321eace6e::$prefixLengthsPsr4;
36
            $loader->prefixDirsPsr4 = ComposerStaticInite5eca23334d547f58d55dd3321eace6e::$prefixDirsPsr4;
37
            $loader->classMap = ComposerStaticInite5eca23334d547f58d55dd3321eace6e::$classMap;
38
39
        }, null, ClassLoader::class);
40
    }
41
}
42