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

configPass::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
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
}