Passed
Push — master ( c32af1...923c61 )
by ANTHONIUS
04:29
created

FakeLoader   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 7
c 1
b 0
f 0
dl 0
loc 16
rs 10
1
<?php
2
3
/*
4
 * This file is part of the doyo/code-coverage project.
5
 *
6
 * (c) Anthonius Munthi <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
class FakeLoader
14
{
15
    public function getPrefixes()
16
    {
17
        return [
18
            'Andromeda\\N4S4Arm\\' => [
19
                __DIR__.'/../src/',
20
            ],
21
        ];
22
    }
23
24
    public function getPrefixesPsr4()
25
    {
26
        return [
27
            'MilkyWay\\OrionCygnusArm\\' => [
28
                __DIR__.'/../src/',
29
            ],
30
        ];
31
    }
32
}
33