Passed
Pull Request — master (#183)
by
unknown
03:23
created

getInitializer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 9
rs 9.9666
c 0
b 0
f 0
1
<?php
2
3
// autoload_static.php @generated by Composer
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5
8
{
9
    public static $files = array (
10
        '24583d3588ebda5228dd453cfaa070da' => __DIR__ . '/..' . '/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php',
11
    );
12
13
    public static $prefixLengthsPsr4 = array (
14
        'C' => 
15
        array (
16
            'Composer\\Installers\\' => 20,
17
        ),
18
    );
19
20
    public static $prefixDirsPsr4 = array (
21
        'Composer\\Installers\\' => 
22
        array (
23
            0 => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers',
24
        ),
25
    );
26
27
    public static $classMap = array (
28
        'WP_Super_Duper' => __DIR__ . '/..' . '/ayecode/wp-super-duper/wp-super-duper.php',
29
    );
30
31
    public static function getInitializer(ClassLoader $loader)
32
    {
33
        return \Closure::bind(function () use ($loader) {
34
            $loader->prefixLengthsPsr4 = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$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...
35
            $loader->prefixDirsPsr4 = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$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...
36
            $loader->classMap = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$classMap;
0 ignored issues
show
Bug introduced by
The property classMap 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...
37
38
        }, null, ClassLoader::class);
39
    }
40
}
41