Total Complexity | 6 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Zone implements JsonSerializable |
||
8 | { |
||
9 | /** @var array */ |
||
10 | private $parameters; |
||
11 | |||
12 | 69 | public function __construct(array $parameters = []) |
|
13 | { |
||
14 | 69 | $this->parameters = $parameters; |
|
15 | 69 | } |
|
16 | |||
17 | 36 | public function replace(array $parameters): void |
|
20 | 36 | } |
|
21 | |||
22 | #[\ReturnTypeWillChange] |
||
30 | } |
||
31 | |||
32 | 51 | public function get($key, $default = null) |
|
41 |