1 | <?php |
||
10 | class Socket implements MessageComponentInterface |
||
11 | { |
||
12 | public static $connections = []; |
||
13 | |||
14 | public function onOpen(ConnectionInterface $connection) |
||
18 | |||
19 | public function onMessage(ConnectionInterface $from, MessageInterface $msg) |
||
29 | |||
30 | public function onClose(ConnectionInterface $connection) |
||
33 | |||
34 | public function onError(ConnectionInterface $connection, \Exception $e) |
||
37 | } |
||
38 |