1 | <?php |
||
7 | class EventManager |
||
8 | { |
||
9 | public static function registerListener(array $eventListeners) |
||
15 | |||
16 | public static function register($eventName, callable $handler, $priority = null) { |
||
19 | |||
20 | public static function trigger($eventName, array $arguments = [], callable $callback = null) |
||
24 | |||
25 | /** |
||
26 | * @return ZooEventManager |
||
27 | */ |
||
28 | private static function getEventManager() |
||
38 | } |
||
39 |