Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | final class NonExistingResult implements ResultInterface |
||
7 | { |
||
8 | |||
9 | private $source; |
||
10 | |||
11 | 3 | public function __construct(string $source) |
|
12 | { |
||
13 | 3 | $this->source = $source; |
|
14 | 3 | } |
|
15 | |||
16 | 1 | public function exists(): bool |
|
17 | { |
||
18 | 1 | return false; |
|
19 | } |
||
20 | |||
21 | 1 | public function encode(): string |
|
24 | } |
||
25 | |||
26 | 1 | public function decode() |
|
29 | } |
||
30 | } |
||
31 |