Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
37 | public function __construct(EventManagerInterface $eventManager, $identifier, $eventName, $callback, $priority) |
||
|
|||
38 | { |
||
39 | $this->eventManager = $eventManager; |
||
40 | $this->idenfier = $identifier; |
||
41 | $this->eventName = $eventName; |
||
42 | $this->callback = $callback; |
||
43 | $this->priority = 0; |
||
44 | } |
||
45 | |||
56 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.