Passed
Push — master ( eaabe9...a9313b )
by Morris
13:32 queued 10s
created

ComposerStaticInitAccessibility::getInitializer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 5
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 8
rs 10
1
<?php
2
3
// autoload_static.php @generated by Composer
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInitAccessibility
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'O' => 
11
        array (
12
            'OCA\\Accessibility\\' => 18,
13
        ),
14
    );
15
16
    public static $prefixDirsPsr4 = array (
17
        'OCA\\Accessibility\\' => 
18
        array (
19
            0 => __DIR__ . '/..' . '/../lib',
20
        ),
21
    );
22
23
    public static $classMap = array (
24
        'OCA\\Accessibility\\AccessibilityProvider' => __DIR__ . '/..' . '/../lib/AccessibilityProvider.php',
25
        'OCA\\Accessibility\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
26
        'OCA\\Accessibility\\Controller\\AccessibilityController' => __DIR__ . '/..' . '/../lib/Controller/AccessibilityController.php',
27
        'OCA\\Accessibility\\Controller\\ConfigController' => __DIR__ . '/..' . '/../lib/Controller/ConfigController.php',
28
        'OCA\\Accessibility\\Settings\\Personal' => __DIR__ . '/..' . '/../lib/Settings/Personal.php',
29
        'OCA\\Accessibility\\Settings\\PersonalSection' => __DIR__ . '/..' . '/../lib/Settings/PersonalSection.php',
30
    );
31
32
    public static function getInitializer(ClassLoader $loader)
33
    {
34
        return \Closure::bind(function () use ($loader) {
35
            $loader->prefixLengthsPsr4 = ComposerStaticInitAccessibility::$prefixLengthsPsr4;
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...
36
            $loader->prefixDirsPsr4 = ComposerStaticInitAccessibility::$prefixDirsPsr4;
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...
37
            $loader->classMap = ComposerStaticInitAccessibility::$classMap;
0 ignored issues
show
Bug introduced by
The property classMap is declared private in Composer\Autoload\ClassLoader and cannot be accessed from this context.
Loading history...
38
39
        }, null, ClassLoader::class);
40
    }
41
}
42