1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
// autoload_static.php @generated by Composer
namespace Composer\Autoload;
class ComposerStaticInitbc00ddcd2e8da9499a4bfd011e6c39c6
{
public static $prefixLengthsPsr4 = array (
'S' =>
array (
'Symfony\\Component\\EventDispatcher\\' => 34,
),
);
public static $prefixDirsPsr4 = array (
'Symfony\\Component\\EventDispatcher\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/event-dispatcher',
),
);
public static $prefixesPsr0 = array (
'M' =>
array (
'Mailgun\\Tests' =>
array (
0 => __DIR__ . '/..' . '/mailgun/mailgun-php/tests',
),
'Mailgun' =>
array (
0 => __DIR__ . '/..' . '/mailgun/mailgun-php/src',
),
),
'G' =>
array (
'Guzzle\\Tests' =>
array (
0 => __DIR__ . '/..' . '/guzzle/guzzle/tests',
),
'Guzzle' =>
array (
0 => __DIR__ . '/..' . '/guzzle/guzzle/src',
),
),
);
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInitbc00ddcd2e8da9499a4bfd011e6c39c6::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitbc00ddcd2e8da9499a4bfd011e6c39c6::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInitbc00ddcd2e8da9499a4bfd011e6c39c6::$prefixesPsr0;
}, null, ClassLoader::class);
}
}
|