Passed
Push — main ( 73c905...3e2603 )
by Rafael N.
02:56 queued 41s
created

getInitializer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 7
rs 10
1
<?php
2
3
// autoload_static.php @generated by Composer
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInitb0a9c553fc53e6322e84a4f72e365d89
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'R' => 
11
        array (
12
            'RafaNSilva\\Support\\' => 19,
13
        ),
14
        'P' => 
15
        array (
16
            'PHPMailer\\PHPMailer\\' => 20,
17
        ),
18
    );
19
20
    public static $prefixDirsPsr4 = array (
21
        'RafaNSilva\\Support\\' => 
22
        array (
23
            0 => __DIR__ . '/../..' . '/src',
24
        ),
25
        'PHPMailer\\PHPMailer\\' => 
26
        array (
27
            0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src',
28
        ),
29
    );
30
31
    public static $classMap = array (
32
        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
33
    );
34
0 ignored issues
show
Bug introduced by
The property prefixLengthsPsr4 is declared private in Composer\Autoload\ClassLoader and cannot be accessed from this context.
Loading history...
35
    public static function getInitializer(ClassLoader $loader)
0 ignored issues
show
Bug introduced by
The property prefixDirsPsr4 is declared private in Composer\Autoload\ClassLoader and cannot be accessed from this context.
Loading history...
36
    {
37
        return \Closure::bind(function () use ($loader) {
38
            $loader->prefixLengthsPsr4 = ComposerStaticInitb0a9c553fc53e6322e84a4f72e365d89::$prefixLengthsPsr4;
39
            $loader->prefixDirsPsr4 = ComposerStaticInitb0a9c553fc53e6322e84a4f72e365d89::$prefixDirsPsr4;
40
            $loader->classMap = ComposerStaticInitb0a9c553fc53e6322e84a4f72e365d89::$classMap;
41
42
        }, null, ClassLoader::class);
43
    }
44
}
45