Test Failed
Push — master ( 4f2669...e5607e )
by Joe
02:33
created

ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getInitializer() 0 6 1
1
<?php
2
3
// autoload_static.php @generated by Composer
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211
8
{
9
    public static function getInitializer(ClassLoader $loader)
0 ignored issues
show
Documentation introduced by
The return type could not be reliably inferred; please add a @return annotation.

Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a @return annotation as described here.

Loading history...
10
    {
11
        return \Closure::bind(function () use ($loader) {
12
13
        }, null, ClassLoader::class);
14
    }
15
}
16