Total Complexity | 3 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | class Definitions |
||
16 | { |
||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | private $array; |
||
21 | |||
22 | /** |
||
23 | * @var Definitions\Services |
||
24 | */ |
||
25 | private $services; |
||
26 | |||
27 | /** |
||
28 | * Definitions constructor. |
||
29 | * |
||
30 | * @param array $array |
||
31 | */ |
||
32 | 1 | public function __construct(array $array) |
|
39 | 1 | } |
|
40 | |||
41 | /** |
||
42 | * @return Services |
||
43 | */ |
||
44 | 1 | public function getServices() |
|
47 | } |
||
48 | |||
49 | /** |
||
50 | * @param array $array |
||
51 | * |
||
52 | * @return Services |
||
53 | */ |
||
54 | 1 | private function parseDefinitionsServices(array $array) |
|
59 |