| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| 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 = ComposerStaticInit2b4448ad4be850d755525f1f201dede8::$prefixLengthsPsr4; |
||
|
|
|||
| 32 | $loader->prefixDirsPsr4 = ComposerStaticInit2b4448ad4be850d755525f1f201dede8::$prefixDirsPsr4; |
||
| 33 | |||
| 34 | }, null, ClassLoader::class); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |
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.