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

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 ComposerStaticInitCloudFederationAPI
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'O' => 
11
        array (
12
            'OCA\\CloudFederationAPI\\' => 23,
13
        ),
14
    );
15
16
    public static $prefixDirsPsr4 = array (
17
        'OCA\\CloudFederationAPI\\' => 
18
        array (
19
            0 => __DIR__ . '/..' . '/../lib',
20
        ),
21
    );
22
23
    public static $classMap = array (
24
        'OCA\\CloudFederationAPI\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
25
        'OCA\\CloudFederationAPI\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php',
26
        'OCA\\CloudFederationAPI\\Config' => __DIR__ . '/..' . '/../lib/Config.php',
27
        'OCA\\CloudFederationAPI\\Controller\\RequestHandlerController' => __DIR__ . '/..' . '/../lib/Controller/RequestHandlerController.php',
28
    );
29
30
    public static function getInitializer(ClassLoader $loader)
31
    {
32
        return \Closure::bind(function () use ($loader) {
33
            $loader->prefixLengthsPsr4 = ComposerStaticInitCloudFederationAPI::$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...
34
            $loader->prefixDirsPsr4 = ComposerStaticInitCloudFederationAPI::$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...
35
            $loader->classMap = ComposerStaticInitCloudFederationAPI::$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...
36
37
        }, null, ClassLoader::class);
38
    }
39
}
40