Completed
Push — master ( 8cd050...5f288c )
by Andreas
22:58
created

configPass   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 3
c 0
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\bundle\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 7
    public function __construct(midcom_config $config)
15
    {
16 7
        $this->config = $config;
17
    }
18
}