Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public static function getInitializer(ClassLoader $loader) |
||
31 | { |
||
32 | return \Closure::bind(function () use ($loader) { |
||
33 | $loader->prefixLengthsPsr4 = ComposerStaticInitCloudFederationAPI::$prefixLengthsPsr4; |
||
|
|||
34 | $loader->prefixDirsPsr4 = ComposerStaticInitCloudFederationAPI::$prefixDirsPsr4; |
||
35 | $loader->classMap = ComposerStaticInitCloudFederationAPI::$classMap; |
||
36 | |||
37 | }, null, ClassLoader::class); |
||
38 | } |
||
40 |