Completed
Push — master ( b0de7c...ec1655 )
by Ed
02:23
created

ComposerStaticInit0510555eec3304761203b257a51bfd0f   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 32
rs 10
c 0
b 0
f 0
wmc 1
lcom 1
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getInitializer() 0 9 1
1
<?php
2
3
// autoload_static.php @generated by Composer
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInit0510555eec3304761203b257a51bfd0f
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'e' => 
11
        array (
12
            'ejdelmonico\\LaravelRSSFeed\\' => 27,
13
        ),
14
    );
15
16
    public static $prefixDirsPsr4 = array (
17
        'ejdelmonico\\LaravelRSSFeed\\' => 
18
        array (
19
            0 => __DIR__ . '/../..' . '/src',
20
            1 => __DIR__ . '/../..' . '/tests',
21
        ),
22
    );
23
24
    public static $classMap = array (
25
        'ejdelmonico\\LaravelRSSFeed\\LaravelRSSFeedServiceProvider' => __DIR__ . '/../..' . '/src/LaravelRSSFeedServiceProvider.php',
26
        'ejdelmonico\\LaravelRSSFeed\\SkeletonClass' => __DIR__ . '/../..' . '/src/SkeletonClass.php',
27
    );
28
29
    public static function getInitializer(ClassLoader $loader)
30
    {
31
        return \Closure::bind(function () use ($loader) {
32
            $loader->prefixLengthsPsr4 = ComposerStaticInit0510555eec3304761203b257a51bfd0f::$prefixLengthsPsr4;
0 ignored issues
show
Bug introduced by
The property prefixLengthsPsr4 cannot be accessed from this context as it is declared private in class Composer\Autoload\ClassLoader.

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.

Loading history...
33
            $loader->prefixDirsPsr4 = ComposerStaticInit0510555eec3304761203b257a51bfd0f::$prefixDirsPsr4;
0 ignored issues
show
Bug introduced by
The property prefixDirsPsr4 cannot be accessed from this context as it is declared private in class Composer\Autoload\ClassLoader.

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.

Loading history...
34
            $loader->classMap = ComposerStaticInit0510555eec3304761203b257a51bfd0f::$classMap;
0 ignored issues
show
Bug introduced by
The property classMap cannot be accessed from this context as it is declared private in class Composer\Autoload\ClassLoader.

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.

Loading history...
35
36
        }, null, ClassLoader::class);
37
    }
38
}
39