| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 90.91% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class WebViewCollector implements CollectorInterface |
||
| 10 | { |
||
| 11 | use CollectorTrait; |
||
| 12 | |||
| 13 | private array $view = []; |
||
| 14 | |||
| 15 | 1 | public function getCollected(): array |
|
| 16 | { |
||
| 17 | 1 | return $this->view; |
|
| 18 | } |
||
| 19 | |||
| 20 | 1 | public function collect(AfterRender $event): void |
|
| 30 | ]; |
||
| 31 | } |
||
| 32 | |||
| 33 | 1 | private function reset(): void |
|
| 38 |
This check looks for private methods that have been defined, but are not used inside the class.