| 1 | <?php |
||
| 5 | class Options extends Request{ |
||
| 6 | |||
| 7 | protected $opcode = Frame::OPCODE_OPTIONS; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * OPTIONS |
||
| 11 | * |
||
| 12 | * Asks the server to return what STARTUP options are supported. The body of an |
||
| 13 | * OPTIONS message should be empty and the server will respond with a SUPPORTED |
||
| 14 | * message. |
||
| 15 | */ |
||
| 16 | public function __construct() { |
||
| 18 | } |