|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
// autoload_static.php @generated by Composer |
|
4
|
|
|
|
|
5
|
|
|
namespace Composer\Autoload; |
|
6
|
|
|
|
|
7
|
|
|
class ComposerStaticInitUserStatus |
|
8
|
|
|
{ |
|
9
|
|
|
public static $prefixLengthsPsr4 = array ( |
|
10
|
|
|
'O' => |
|
11
|
|
|
array ( |
|
12
|
|
|
'OCA\\UserStatus\\' => 15, |
|
13
|
|
|
), |
|
14
|
|
|
); |
|
15
|
|
|
|
|
16
|
|
|
public static $prefixDirsPsr4 = array ( |
|
17
|
|
|
'OCA\\UserStatus\\' => |
|
18
|
|
|
array ( |
|
19
|
|
|
0 => __DIR__ . '/..' . '/../lib', |
|
20
|
|
|
), |
|
21
|
|
|
); |
|
22
|
|
|
|
|
23
|
|
|
public static $classMap = array ( |
|
24
|
|
|
'OCA\\UserStatus\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
25
|
|
|
'OCA\\UserStatus\\BackgroundJob\\ClearOldStatusesBackgroundJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/ClearOldStatusesBackgroundJob.php', |
|
26
|
|
|
'OCA\\UserStatus\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php', |
|
27
|
|
|
'OCA\\UserStatus\\Controller\\HeartbeatController' => __DIR__ . '/..' . '/../lib/Controller/HeartbeatController.php', |
|
28
|
|
|
'OCA\\UserStatus\\Controller\\PredefinedStatusController' => __DIR__ . '/..' . '/../lib/Controller/PredefinedStatusController.php', |
|
29
|
|
|
'OCA\\UserStatus\\Controller\\StatusesController' => __DIR__ . '/..' . '/../lib/Controller/StatusesController.php', |
|
30
|
|
|
'OCA\\UserStatus\\Controller\\UserStatusController' => __DIR__ . '/..' . '/../lib/Controller/UserStatusController.php', |
|
31
|
|
|
'OCA\\UserStatus\\Db\\UserStatus' => __DIR__ . '/..' . '/../lib/Db/UserStatus.php', |
|
32
|
|
|
'OCA\\UserStatus\\Db\\UserStatusMapper' => __DIR__ . '/..' . '/../lib/Db/UserStatusMapper.php', |
|
33
|
|
|
'OCA\\UserStatus\\Exception\\InvalidClearAtException' => __DIR__ . '/..' . '/../lib/Exception/InvalidClearAtException.php', |
|
34
|
|
|
'OCA\\UserStatus\\Exception\\InvalidMessageIdException' => __DIR__ . '/..' . '/../lib/Exception/InvalidMessageIdException.php', |
|
35
|
|
|
'OCA\\UserStatus\\Exception\\InvalidStatusIconException' => __DIR__ . '/..' . '/../lib/Exception/InvalidStatusIconException.php', |
|
36
|
|
|
'OCA\\UserStatus\\Exception\\InvalidStatusTypeException' => __DIR__ . '/..' . '/../lib/Exception/InvalidStatusTypeException.php', |
|
37
|
|
|
'OCA\\UserStatus\\Exception\\StatusMessageTooLongException' => __DIR__ . '/..' . '/../lib/Exception/StatusMessageTooLongException.php', |
|
38
|
|
|
'OCA\\UserStatus\\Listener\\BeforeTemplateRenderedListener' => __DIR__ . '/..' . '/../lib/Listener/BeforeTemplateRenderedListener.php', |
|
39
|
|
|
'OCA\\UserStatus\\Listener\\UserDeletedListener' => __DIR__ . '/..' . '/../lib/Listener/UserDeletedListener.php', |
|
40
|
|
|
'OCA\\UserStatus\\Listener\\UserLiveStatusListener' => __DIR__ . '/..' . '/../lib/Listener/UserLiveStatusListener.php', |
|
41
|
|
|
'OCA\\UserStatus\\Migration\\Version0001Date20200602134824' => __DIR__ . '/..' . '/../lib/Migration/Version0001Date20200602134824.php', |
|
42
|
|
|
'OCA\\UserStatus\\Service\\EmojiService' => __DIR__ . '/..' . '/../lib/Service/EmojiService.php', |
|
43
|
|
|
'OCA\\UserStatus\\Service\\JSDataService' => __DIR__ . '/..' . '/../lib/Service/JSDataService.php', |
|
44
|
|
|
'OCA\\UserStatus\\Service\\PredefinedStatusService' => __DIR__ . '/..' . '/../lib/Service/PredefinedStatusService.php', |
|
45
|
|
|
'OCA\\UserStatus\\Service\\StatusService' => __DIR__ . '/..' . '/../lib/Service/StatusService.php', |
|
46
|
|
|
); |
|
47
|
|
|
|
|
48
|
|
|
public static function getInitializer(ClassLoader $loader) |
|
49
|
|
|
{ |
|
50
|
|
|
return \Closure::bind(function () use ($loader) { |
|
51
|
|
|
$loader->prefixLengthsPsr4 = ComposerStaticInitUserStatus::$prefixLengthsPsr4; |
|
|
|
|
|
|
52
|
|
|
$loader->prefixDirsPsr4 = ComposerStaticInitUserStatus::$prefixDirsPsr4; |
|
|
|
|
|
|
53
|
|
|
$loader->classMap = ComposerStaticInitUserStatus::$classMap; |
|
|
|
|
|
|
54
|
|
|
|
|
55
|
|
|
}, null, ClassLoader::class); |
|
56
|
|
|
} |
|
57
|
|
|
} |
|
58
|
|
|
|