Completed
Push — master ( 9f27a4...b8dbf7 )
by Marcel
01:51
created

FakeComposer   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 17
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getClassMap() 0 4 1
A getPrefixes() 0 4 1
A getPrefixesPsr4() 0 4 1
1
<?php
2
3
namespace Facade\Ignition\Support;
4
5
class FakeComposer
6
{
7
    public function getClassMap()
8
    {
9
        return [];
10
    }
11
12
    public function getPrefixes()
13
    {
14
        return [];
15
    }
16
17
    public function getPrefixesPsr4()
18
    {
19
        return [];
20
    }
21
}
22