1 | <?php |
||
9 | class PrivateChannel extends Channel |
||
10 | { |
||
11 | /** |
||
12 | * Subscribe to the channel. |
||
13 | * |
||
14 | * @see https://pusher.com/docs/pusher_protocol#presence-channel-events |
||
15 | * @param \Ratchet\ConnectionInterface $connection |
||
16 | * @param \stdClass $payload |
||
17 | * @return void |
||
18 | * @throws InvalidSignature |
||
19 | */ |
||
20 | public function subscribe(ConnectionInterface $connection, stdClass $payload) |
||
26 | } |
||
27 |