|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
// autoload_static.php @generated by Composer |
|
4
|
|
|
|
|
5
|
|
|
namespace Composer\Autoload; |
|
6
|
|
|
|
|
7
|
|
|
class ComposerStaticInitContactsInteraction |
|
8
|
|
|
{ |
|
9
|
|
|
public static $prefixLengthsPsr4 = array ( |
|
10
|
|
|
'O' => |
|
11
|
|
|
array ( |
|
12
|
|
|
'OCA\\ContactsInteraction\\' => 24, |
|
13
|
|
|
), |
|
14
|
|
|
); |
|
15
|
|
|
|
|
16
|
|
|
public static $prefixDirsPsr4 = array ( |
|
17
|
|
|
'OCA\\ContactsInteraction\\' => |
|
18
|
|
|
array ( |
|
19
|
|
|
0 => __DIR__ . '/..' . '/../lib', |
|
20
|
|
|
), |
|
21
|
|
|
); |
|
22
|
|
|
|
|
23
|
|
|
public static $classMap = array ( |
|
24
|
|
|
'OCA\\ContactsInteraction\\AddressBook' => __DIR__ . '/..' . '/../lib/AddressBook.php', |
|
25
|
|
|
'OCA\\ContactsInteraction\\AddressBookProvider' => __DIR__ . '/..' . '/../lib/AddressBookProvider.php', |
|
26
|
|
|
'OCA\\ContactsInteraction\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
27
|
|
|
'OCA\\ContactsInteraction\\BackgroundJob\\CleanupJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/CleanupJob.php', |
|
28
|
|
|
'OCA\\ContactsInteraction\\Card' => __DIR__ . '/..' . '/../lib/Card.php', |
|
29
|
|
|
'OCA\\ContactsInteraction\\Db\\CardSearchDao' => __DIR__ . '/..' . '/../lib/Db/CardSearchDao.php', |
|
30
|
|
|
'OCA\\ContactsInteraction\\Db\\RecentContact' => __DIR__ . '/..' . '/../lib/Db/RecentContact.php', |
|
31
|
|
|
'OCA\\ContactsInteraction\\Db\\RecentContactMapper' => __DIR__ . '/..' . '/../lib/Db/RecentContactMapper.php', |
|
32
|
|
|
'OCA\\ContactsInteraction\\Listeners\\ContactInteractionListener' => __DIR__ . '/..' . '/../lib/Listeners/ContactInteractionListener.php', |
|
33
|
|
|
'OCA\\ContactsInteraction\\Migration\\Version010000Date20200304152605' => __DIR__ . '/..' . '/../lib/Migration/Version010000Date20200304152605.php', |
|
34
|
|
|
); |
|
35
|
|
|
|
|
36
|
|
|
public static function getInitializer(ClassLoader $loader) |
|
37
|
|
|
{ |
|
38
|
|
|
return \Closure::bind(function () use ($loader) { |
|
39
|
|
|
$loader->prefixLengthsPsr4 = ComposerStaticInitContactsInteraction::$prefixLengthsPsr4; |
|
|
|
|
|
|
40
|
|
|
$loader->prefixDirsPsr4 = ComposerStaticInitContactsInteraction::$prefixDirsPsr4; |
|
|
|
|
|
|
41
|
|
|
$loader->classMap = ComposerStaticInitContactsInteraction::$classMap; |
|
|
|
|
|
|
42
|
|
|
|
|
43
|
|
|
}, null, ClassLoader::class); |
|
44
|
|
|
} |
|
45
|
|
|
} |
|
46
|
|
|
|