Server.php 617 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace Swoole\WebSocket;
  3. class Server extends \Swoole\Http\Server
  4. {
  5. /**
  6. * @return mixed
  7. */
  8. public function push($fd, $data, $opcode = null, $flags = null)
  9. {
  10. }
  11. /**
  12. * @return mixed
  13. */
  14. public function disconnect($fd, $code = null, $reason = null)
  15. {
  16. }
  17. /**
  18. * @return mixed
  19. */
  20. public function isEstablished($fd)
  21. {
  22. }
  23. /**
  24. * @return mixed
  25. */
  26. public static function pack($data, $opcode = null, $flags = null)
  27. {
  28. }
  29. /**
  30. * @return mixed
  31. */
  32. public static function unpack($data)
  33. {
  34. }
  35. }