Test Failed
Push — master ( ff7c45...dfacfc )
by Martin
04:28
created

getInitializer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 1
dl 0
loc 8
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
// autoload_static.php @generated by Composer
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInitab1618bbc8c3c4eec9f7a71b4e73cc26
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'T' => 
11
        array (
12
            'Todo\\' => 5,
13
        ),
14
    );
15
16
    public static $prefixDirsPsr4 = array (
17
        'Todo\\' => 
18
        array (
19
            0 => __DIR__ . '/../..' . '/Todo',
20
        ),
21
    );
22
23
    public static function getInitializer(ClassLoader $loader)
24
    {
25
        return \Closure::bind(function () use ($loader) {
26
            $loader->prefixLengthsPsr4 = ComposerStaticInitab1618bbc8c3c4eec9f7a71b4e73cc26::$prefixLengthsPsr4;
0 ignored issues
show
Bug introduced by
The property prefixLengthsPsr4 cannot be accessed from this context as it is declared private in class Composer\Autoload\ClassLoader.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
27
            $loader->prefixDirsPsr4 = ComposerStaticInitab1618bbc8c3c4eec9f7a71b4e73cc26::$prefixDirsPsr4;
0 ignored issues
show
Bug introduced by
The property prefixDirsPsr4 cannot be accessed from this context as it is declared private in class Composer\Autoload\ClassLoader.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
28
29
        }, null, ClassLoader::class);
30
    }
31
}
32