1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
// autoload_static.php @generated by Composer |
4
|
|
|
|
5
|
|
|
namespace Composer\Autoload; |
6
|
|
|
|
7
|
|
|
class ComposerStaticInitComments |
8
|
|
|
{ |
9
|
|
|
public static $prefixLengthsPsr4 = array ( |
10
|
|
|
'O' => |
11
|
|
|
array ( |
12
|
|
|
'OCA\\Comments\\' => 13, |
13
|
|
|
), |
14
|
|
|
); |
15
|
|
|
|
16
|
|
|
public static $prefixDirsPsr4 = array ( |
17
|
|
|
'OCA\\Comments\\' => |
18
|
|
|
array ( |
19
|
|
|
0 => __DIR__ . '/..' . '/../lib', |
20
|
|
|
), |
21
|
|
|
); |
22
|
|
|
|
23
|
|
|
public static $classMap = array ( |
24
|
|
|
'OCA\\Comments\\Activity\\Filter' => __DIR__ . '/..' . '/../lib/Activity/Filter.php', |
25
|
|
|
'OCA\\Comments\\Activity\\Listener' => __DIR__ . '/..' . '/../lib/Activity/Listener.php', |
26
|
|
|
'OCA\\Comments\\Activity\\Provider' => __DIR__ . '/..' . '/../lib/Activity/Provider.php', |
27
|
|
|
'OCA\\Comments\\Activity\\Setting' => __DIR__ . '/..' . '/../lib/Activity/Setting.php', |
28
|
|
|
'OCA\\Comments\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
29
|
|
|
'OCA\\Comments\\Controller\\Notifications' => __DIR__ . '/..' . '/../lib/Controller/Notifications.php', |
30
|
|
|
'OCA\\Comments\\EventHandler' => __DIR__ . '/..' . '/../lib/EventHandler.php', |
31
|
|
|
'OCA\\Comments\\Notification\\Listener' => __DIR__ . '/..' . '/../lib/Notification/Listener.php', |
32
|
|
|
'OCA\\Comments\\Notification\\Notifier' => __DIR__ . '/..' . '/../lib/Notification/Notifier.php', |
33
|
|
|
); |
34
|
|
|
|
35
|
|
|
public static function getInitializer(ClassLoader $loader) |
36
|
|
|
{ |
37
|
|
|
return \Closure::bind(function () use ($loader) { |
38
|
|
|
$loader->prefixLengthsPsr4 = ComposerStaticInitComments::$prefixLengthsPsr4; |
|
|
|
|
39
|
|
|
$loader->prefixDirsPsr4 = ComposerStaticInitComments::$prefixDirsPsr4; |
|
|
|
|
40
|
|
|
$loader->classMap = ComposerStaticInitComments::$classMap; |
|
|
|
|
41
|
|
|
|
42
|
|
|
}, null, ClassLoader::class); |
43
|
|
|
} |
44
|
|
|
} |
45
|
|
|
|
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.