Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
44 | public function __construct(EventManagerInterface $eventManager, $identifier, $eventName, $callback, $priority) |
||
|
|||
45 | { |
||
46 | $this->eventManager = $eventManager; |
||
47 | $this->idenfier = $identifier; |
||
48 | $this->eventName = $eventName; |
||
49 | $this->callback = $callback; |
||
50 | $this->priority = 0; |
||
51 | } |
||
52 | |||
83 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.