| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class WopiDiscoveryListener implements EventSubscriberInterface |
||
| 18 | { |
||
| 19 | private WopiDiscoveryInterface $wopiDiscovery; |
||
| 20 | |||
| 21 | public function __construct(WopiDiscoveryInterface $wopiDiscovery) |
||
| 22 | { |
||
| 23 | $this->wopiDiscovery = $wopiDiscovery; |
||
| 24 | } |
||
| 25 | |||
| 26 | public static function getSubscribedEvents(): array |
||
| 30 | ]; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function onKernelRequest(RequestEvent $event): void |
||
| 38 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.