Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function __construct() |
||
14 | { |
||
15 | $this->method = trim($_SERVER['REQUEST_METHOD']); |
||
16 | $this->contentType = !empty($_SERVER["CONTENT_TYPE"]) ? trim($_SERVER["CONTENT_TYPE"]) : ''; |
||
17 | $this->cookie = $_COOKIE; |
||
18 | $this->files = $_FILES; |
||
19 | $this->post = $_POST; |
||
20 | $this->get = $_GET; |
||
21 | $this->url = $_SERVER['REQUEST_URI']; |
||
22 | } |
||
25 | } |