| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | class EventsManager |
||
| 13 | { |
||
| 14 | use EventManagerAwareTrait; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Checking if event manager is defined - fire event. |
||
| 18 | * |
||
| 19 | * @param string $event |
||
| 20 | * @param object $source |
||
| 21 | * @param mixed $data |
||
| 22 | * @param boolean $cancelable |
||
| 23 | * |
||
| 24 | */ |
||
| 25 | public function fireToQueue($event, $source, $data = null, $cancelable = true) |
||
| 34 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.