Total Complexity | 4 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | final class NonExistingValueResult implements ValueResultInterface |
||
9 | { |
||
10 | |||
11 | 1 | public function exists(): bool |
|
14 | } |
||
15 | |||
16 | 1 | public function encode(): string |
|
17 | { |
||
18 | 1 | throw new Exception\SelectedValueNotFoundException; |
|
19 | } |
||
20 | |||
21 | 1 | public function decode() |
|
22 | { |
||
23 | 1 | throw new Exception\SelectedValueNotFoundException; |
|
24 | } |
||
25 | |||
26 | 1 | public function get(): ValueInterface |
|
29 | } |
||
30 | } |
||
31 |