Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 40% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class EmptyReference implements ReferenceInterface |
||
8 | { |
||
9 | 168 | public function __construct( |
|
13 | |||
14 | public function getRole(): string |
||
15 | { |
||
16 | return $this->role; |
||
17 | } |
||
18 | |||
19 | public function getScope(): array |
||
22 | } |
||
23 | |||
24 | public function hasValue(): bool |
||
25 | 144 | { |
|
26 | return true; |
||
27 | 144 | } |
|
28 | |||
29 | public function setValue(mixed $value): void |
||
32 | } |
||
33 | |||
34 | public function getValue(): mixed |
||
37 | 144 | } |
|
38 | } |
||
39 |