| 1 | <?php |
||
| 7 | final class Request |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @param string $name |
||
| 12 | * @param mixed $defaultValue |
||
| 13 | * |
||
| 14 | * @return mixed |
||
| 15 | */ |
||
| 16 | public function getParam($name, $defaultValue = null){ |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return bool |
||
| 30 | */ |
||
| 31 | public function isPost(){ |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | public function getPostParameters(){ |
||
| 41 | } |