| 1 | <?php |
||
| 25 | class Request { |
||
| 26 | protected $vars; |
||
| 27 | |||
| 28 | 4 | public function __construct($vars = []){ |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @param string $name |
||
| 34 | * @return mixed |
||
| 35 | */ |
||
| 36 | 4 | public function postParameter($name){ |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @param string $name |
||
| 42 | * @return mixed |
||
| 43 | */ |
||
| 44 | public function header($name) { |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param string $name |
||
| 51 | * @return mixed |
||
| 52 | */ |
||
| 53 | public function server($name){ |
||
| 56 | |||
| 57 | |||
| 58 | } |
||
| 59 | |||
| 60 |