Request.php 884 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace Swoole\Http;
  3. class Request
  4. {
  5. public $fd = 0;
  6. public $streamId = 0;
  7. public $header;
  8. public $server;
  9. public $cookie;
  10. public $get;
  11. public $files;
  12. public $post;
  13. public $tmpfiles;
  14. /**
  15. * @return mixed
  16. */
  17. public function rawContent()
  18. {
  19. }
  20. /**
  21. * @return mixed
  22. */
  23. public function getContent()
  24. {
  25. }
  26. /**
  27. * @return mixed
  28. */
  29. public function getData()
  30. {
  31. }
  32. /**
  33. * @return mixed
  34. */
  35. public static function create($options = null)
  36. {
  37. }
  38. /**
  39. * @return mixed
  40. */
  41. public function parse($data)
  42. {
  43. }
  44. /**
  45. * @return mixed
  46. */
  47. public function isCompleted()
  48. {
  49. }
  50. /**
  51. * @return mixed
  52. */
  53. public function getMethod()
  54. {
  55. }
  56. public function __destruct()
  57. {
  58. }
  59. }