Passed
Branch develop (905d13)
by Mariano
09:27
created

Mapping   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Test Coverage

Coverage 90%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
c 1
b 0
f 0
lcom 1
cbo 0
dl 0
loc 21
ccs 9
cts 10
cp 0.9
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A checkMappingIsValid() 0 6 2
A addMapping() 0 4 1
1
<?php
2
namespace Mcustiel\PowerRoute\Common\Factories;
3
4
class Mapping
5
{
6
    protected $mapping = [];
7
8 3
    public function __construct(array $mapping)
9
    {
10 3
        $this->mapping = array_merge($this->mapping, $mapping);
11 3
    }
12
13 3
    protected function checkMappingIsValid($mapping)
14
    {
15 3
        if (!isset($this->mapping[$mapping])) {
16
            throw new \Exception();
17
        }
18 3
    }
19
20 3
    public function addMapping($identifier, $class)
21
    {
22 3
        $this->mapping[$identifier] = $class;
23 3
    }
24
}
25