Completed
Push — master ( 686a73...f200ef )
by mehdi
02:47
created

ComposerStaticInitb90bf1d271f3139658812a290f5c564b   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 26
rs 10
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 ComposerStaticInitb90bf1d271f3139658812a290f5c564b
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'A' => 
11
        array (
12
            'Anetwork\\Respond\\' => 17,
13
        ),
14
    );
15
16
    public static $prefixDirsPsr4 = array (
17
        'Anetwork\\Respond\\' => 
18
        array (
19
            0 => __DIR__ . '/../..' . '/src',
20
            1 => __DIR__ . '/../..' . '/tests',
21
        ),
22
    );
23
24
    public static function getInitializer(ClassLoader $loader)
25
    {
26
        return \Closure::bind(function () use ($loader) {
27
            $loader->prefixLengthsPsr4 = ComposerStaticInitb90bf1d271f3139658812a290f5c564b::$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...
28
            $loader->prefixDirsPsr4 = ComposerStaticInitb90bf1d271f3139658812a290f5c564b::$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...
29
30
        }, null, ClassLoader::class);
31
    }
32
}
33