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