1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace Swoole\WebSocket;
- class Server extends \Swoole\Http\Server
- {
- /**
- * @return mixed
- */
- public function push($fd, $data, $opcode = null, $flags = null)
- {
- }
- /**
- * @return mixed
- */
- public function disconnect($fd, $code = null, $reason = null)
- {
- }
- /**
- * @return mixed
- */
- public function isEstablished($fd)
- {
- }
- /**
- * @return mixed
- */
- public static function pack($data, $opcode = null, $flags = null)
- {
- }
- /**
- * @return mixed
- */
- public static function unpack($data)
- {
- }
- }
|