| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public static function getInitializer(ClassLoader $loader) |
||
| 29 | { |
||
| 30 | return \Closure::bind(function () use ($loader) { |
||
| 31 | $loader->prefixLengthsPsr4 = ComposerStaticInitLookupServerConnector::$prefixLengthsPsr4; |
||
|
|
|||
| 32 | $loader->prefixDirsPsr4 = ComposerStaticInitLookupServerConnector::$prefixDirsPsr4; |
||
| 33 | $loader->classMap = ComposerStaticInitLookupServerConnector::$classMap; |
||
| 34 | |||
| 35 | }, null, ClassLoader::class); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.