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

Mapping::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

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