Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function addHandler($event, ?callable $function): void |
||
22 | { |
||
23 | if (is_callable($event)) { |
||
24 | $function = $event; |
||
25 | $event = '*'; |
||
26 | } |
||
27 | |||
28 | if (!array_key_exists($event, $this->eventHandlers)) { |
||
29 | $this->eventHandlers[$event] = []; |
||
30 | } |
||
31 | |||
32 | $this->eventHandlers[$event][] = $function; |
||
33 | } |
||
49 |