| 1 | <?php |
||
| 7 | class ComposerStaticInitLookupServerConnector |
||
| 8 | { |
||
| 9 | public static $prefixLengthsPsr4 = array ( |
||
| 10 | 'O' => |
||
| 11 | array ( |
||
| 12 | 'OCA\\LookupServerConnector\\' => 26, |
||
| 13 | ), |
||
| 14 | ); |
||
| 15 | |||
| 16 | public static $prefixDirsPsr4 = array ( |
||
| 17 | 'OCA\\LookupServerConnector\\' => |
||
| 18 | array ( |
||
| 19 | 0 => __DIR__ . '/..' . '/../lib', |
||
| 20 | ), |
||
| 21 | ); |
||
| 22 | |||
| 23 | public static $classMap = array ( |
||
| 24 | 'OCA\\LookupServerConnector\\BackgroundJobs\\RetryJob' => __DIR__ . '/..' . '/../lib/BackgroundJobs/RetryJob.php', |
||
| 25 | 'OCA\\LookupServerConnector\\UpdateLookupServer' => __DIR__ . '/..' . '/../lib/UpdateLookupServer.php', |
||
| 26 | ); |
||
| 27 | |||
| 28 | public static function getInitializer(ClassLoader $loader) |
||
| 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.