12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Swoole\WebSocket;
- class Frame
- {
- public $fd = 0;
- public $data = '';
- public $opcode = 1;
- public $flags = 1;
- public $finish;
- /**
- * @return mixed
- */
- public function __toString()
- {
- }
- /**
- * @return mixed
- */
- public static function pack($data, $opcode = null, $flags = null)
- {
- }
- /**
- * @return mixed
- */
- public static function unpack($data)
- {
- }
- }
|