Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | class Options |
||
15 | { |
||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | private $array; |
||
20 | |||
21 | /** |
||
22 | * Definitions constructor. |
||
23 | * |
||
24 | * @param array $array |
||
25 | */ |
||
26 | 3 | public function __construct(array $array) |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return bool |
||
35 | */ |
||
36 | 1 | public function getDocker() |
|
39 | } |
||
40 | |||
41 | /** |
||
42 | * @param array $array |
||
43 | * |
||
44 | * @return array |
||
45 | */ |
||
46 | 3 | private function parseOptions(array $array) |
|
55 |