1 | <?php |
||
17 | class ConstructEvent extends Event |
||
18 | { |
||
19 | const EVENT = 'WyriHaximus.Ratchet.construct'; |
||
20 | |||
21 | /** |
||
22 | * @param LoopInterface $loop |
||
23 | * @return static |
||
24 | */ |
||
25 | public static function create(LoopInterface $loop, EventManager $eventManager) |
||
32 | |||
33 | /** |
||
34 | * @return LoopInterface |
||
35 | */ |
||
36 | public function getLoop() |
||
40 | |||
41 | /** |
||
42 | * @return EventManager |
||
43 | */ |
||
44 | public function getEventManager() |
||
48 | } |