Test Failed
Push — resize ( fbaf05...026e01 )
by Mikael
02:27
created

ComposerStaticInit2b4448ad4be850d755525f1f201dede8   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 30
rs 10
c 0
b 0
f 0
wmc 1
lcom 1
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getInitializer() 0 8 1
1
<?php
2
3
// autoload_static.php @generated by Composer
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInit2b4448ad4be850d755525f1f201dede8
8
{
9
    public static $files = array (
10
        'c033e147fa8801d0fd8ea2bc8fa37e2a' => __DIR__ . '/../..' . '/src/defines.php',
11
        '3b345cc3469552d097f31e5a67742144' => __DIR__ . '/../..' . '/src/functions.php',
12
    );
13
14
    public static $prefixLengthsPsr4 = array (
15
        'M' => 
16
        array (
17
            'Mos\\' => 4,
18
        ),
19
    );
20
21
    public static $prefixDirsPsr4 = array (
22
        'Mos\\' => 
23
        array (
24
            0 => __DIR__ . '/../..' . '/src',
25
        ),
26
    );
27
28
    public static function getInitializer(ClassLoader $loader)
29
    {
30
        return \Closure::bind(function () use ($loader) {
31
            $loader->prefixLengthsPsr4 = ComposerStaticInit2b4448ad4be850d755525f1f201dede8::$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...
32
            $loader->prefixDirsPsr4 = ComposerStaticInit2b4448ad4be850d755525f1f201dede8::$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...
33
34
        }, null, ClassLoader::class);
35
    }
36
}
37