Total Complexity | 6 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
4 | final class Request extends \WebServCo\Framework\AbstractRequest |
||
5 | { |
||
6 | public function __construct($config, $server, $post = []) |
||
11 | } |
||
12 | |||
13 | public function getMethod() |
||
14 | { |
||
15 | return $this->method; |
||
16 | } |
||
17 | |||
18 | public function getTarget() |
||
19 | { |
||
20 | return $this->target; |
||
21 | } |
||
22 | |||
23 | public function getQuery() |
||
24 | { |
||
25 | return $this->query; |
||
26 | } |
||
27 | |||
28 | public function getArgs() |
||
31 | } |
||
32 | |||
33 | public function getSuffix() |
||
34 | { |
||
38 |