Total Complexity | 1 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
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) |
||
40 |