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