| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 4 | final class Request extends \WebServCo\Framework\AbstractRequest implements |
||
| 5 | \WebServCo\Framework\Interfaces\RequestInterface |
||
| 6 | { |
||
| 7 | use \WebServCo\Framework\Traits\RequestProcessTrait; |
||
| 8 | use \WebServCo\Framework\Traits\RequestServerTrait; |
||
| 9 | use \WebServCo\Framework\Traits\RequestUrlTrait; |
||
| 10 | |||
| 11 | public function __construct($settings, $server, $post = []) |
||
| 12 | { |
||
| 13 | parent::__construct($settings); |
||
| 14 | |||
| 15 | $this->init($server, $post); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function getArgs() |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getBody() |
||
| 24 | { |
||
| 25 | return $this->body; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getMethod() |
||
| 31 | } |
||
| 32 | } |
||
| 33 |