| Total Complexity | 2 |
| Total Lines | 31 |
| 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 | 1 | private function parseDefinitionsServices(array $array) |
|
| 48 |