1 | <?php |
||
19 | class WrongOpcodeFrameHandler implements Rfc6455FrameHandlerInterface |
||
20 | { |
||
21 | /** |
||
22 | * The following opcode are wrong for now but may represent something in the future depending on how the spec evolves. |
||
23 | * https://tools.ietf.org/html/rfc6455#section-5.2 |
||
24 | * |
||
25 | * @param Message $message |
||
26 | * @return bool |
||
27 | */ |
||
28 | 16 | public function supports(Message $message) |
|
32 | |||
33 | /** |
||
34 | * @param Message $message |
||
35 | * @param MessageProcessor $messageProcessor |
||
36 | * @param ConnectionInterface $socket |
||
37 | * @return null|void |
||
38 | */ |
||
39 | 1 | public function process(Message $message, MessageProcessor $messageProcessor, ConnectionInterface $socket) |
|
44 | } |
||
45 |