Completed
Push — 0.x ( 477f4a...8f7b39 )
by Andrew
06:34
created

Module::requireDev()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
namespace Cadre\Module;
3
4
use Aura\Di\Container;
5
6
class Module implements ModuleInterface
7
{
8
    private $loader;
9
10 12
    public function __construct(ModuleLoaderInterface $loader)
11
    {
12 12
        $this->loader = $loader;
13 12
    }
14
15 2
    public function loader()
16
    {
17 2
        return $this->loader;
18
    }
19
20 12
    public function require()
21
    {
22 12
        return [];
23
    }
24
25 11
    public function conflict()
26
    {
27 11
        return [];
28
    }
29
30 11
    public function replace()
31
    {
32 11
        return [];
33
    }
34
35 7
    public function define(Container $di)
36
    {
37 7
    }
38
39 8
    public function modify(Container $di)
40
    {
41 8
    }
42
}
43