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