| Total Complexity | 5 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | final class NonExistingResult implements ResultInterface |
||
| 9 | { |
||
| 10 | |||
| 11 | private $source; |
||
| 12 | |||
| 13 | 4 | public function __construct(string $source) |
|
| 14 | { |
||
| 15 | 4 | $this->source = $source; |
|
| 16 | 4 | } |
|
| 17 | |||
| 18 | 1 | public function exists(): bool |
|
| 19 | { |
||
| 20 | 1 | return false; |
|
| 21 | } |
||
| 22 | |||
| 23 | 1 | public function encode(): string |
|
| 26 | } |
||
| 27 | |||
| 28 | 1 | public function decode() |
|
| 31 | } |
||
| 32 | |||
| 33 | 1 | public function get(): NodeValueInterface |
|
| 38 |