Passed
Push — master ( 482ae9...59f703 )
by Andreas
22:54
created

configPass   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 3
c 2
b 0
f 0
dl 0
loc 10
ccs 2
cts 2
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace midcom\dependencyInjection;
3
4
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
5
use midcom_config;
6
7
abstract class configPass implements CompilerPassInterface
8
{
9
    /**
10
     * @var midcom_config
11
     */
12
    protected $config;
13
14 4
    public function __construct(midcom_config $config)
15
    {
16 4
        $this->config = $config;
17
    }
18
}