| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class CacheCleanerPlugin extends Injectable |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * This action is executed before execute any action in the application |
||
| 26 | * |
||
| 27 | * @param Event $event |
||
| 28 | * @param Dispatcher $dispatcher |
||
| 29 | * |
||
| 30 | * @return bool |
||
| 31 | */ |
||
| 32 | public function beforeDispatch(/** @scrutinizer ignore-unused */ Event $event, Dispatcher $dispatcher): bool |
||
| 46 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.