1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- namespace Swoole\Http;
- class Request
- {
- public $fd = 0;
- public $streamId = 0;
- public $header;
- public $server;
- public $cookie;
- public $get;
- public $files;
- public $post;
- public $tmpfiles;
- /**
- * @return mixed
- */
- public function rawContent()
- {
- }
- /**
- * @return mixed
- */
- public function getContent()
- {
- }
- /**
- * @return mixed
- */
- public function getData()
- {
- }
- /**
- * @return mixed
- */
- public static function create($options = null)
- {
- }
- /**
- * @return mixed
- */
- public function parse($data)
- {
- }
- /**
- * @return mixed
- */
- public function isCompleted()
- {
- }
- /**
- * @return mixed
- */
- public function getMethod()
- {
- }
- public function __destruct()
- {
- }
- }
|