Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ConfiguratorData |
||
8 | { |
||
9 | private $context; |
||
10 | private $config = []; |
||
11 | |||
12 | 32 | public function __construct(ContextInterface $context) |
|
15 | 32 | } |
|
16 | |||
17 | 20 | public function getContext(): ContextInterface |
|
18 | { |
||
19 | 20 | return $this->context; |
|
20 | } |
||
21 | |||
22 | 26 | public function getConfig(): array |
|
25 | } |
||
26 | |||
27 | 32 | public function setConfig(array $config): void |
|
32 |