| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | #[Cacheable] |
||
| 15 | final class NullPage extends ResourceObject |
||
| 16 | { |
||
| 17 | #[Override] |
||
| 18 | #[Inject(optional: true)] |
||
| 19 | public function setRenderer(RenderInterface $renderer): self |
||
| 20 | { |
||
| 21 | unset($renderer); |
||
| 22 | $this->renderer = new NullRenderer(); |
||
| 23 | |||
| 24 | return $this; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function onGet(string $required, int $optional = 0): ResourceObject |
||
| 32 | } |
||
| 33 | } |
||
| 34 |