TransformerRegistry   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 13
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A get() 0 3 1
A add() 0 3 1
1
<?php
2
3
namespace Darkilliant\ImportBundle\Registry;
4
5
use Darkilliant\ImportBundle\Transformer\AbstractTransformer;
6
7
/**
8
 * @internal
9
 * Class TransformerRegistry
10
 */
11
class TransformerRegistry
12
{
13
    /** @var TransformerInterface[] */
14
    private $collection;
15
16 2
    public function get($id): AbstractTransformer
17
    {
18 2
        return $this->collection[$id];
19
    }
20
21 1
    public function add($id, AbstractTransformer $transformer)
22
    {
23 1
        $this->collection[$id] = $transformer;
24 1
    }
25
}
26