| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class ServerRequest extends Message\ServerRequest implements \IteratorAggregate |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * Request::$controller |
||
| 30 | * |
||
| 31 | * Requested Controller FilePath |
||
| 32 | * |
||
| 33 | * @var string Controller FilePath. |
||
| 34 | */ |
||
| 35 | protected $controller; |
||
| 36 | |||
| 37 | // ------------------------------------------------------------------------ |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Request::getLanguage |
||
| 41 | * |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function getLanguage() |
||
| 47 | } |
||
| 48 | |||
| 49 | //-------------------------------------------------------------------- |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Request::getController |
||
| 53 | * |
||
| 54 | * @return bool|Controller |
||
| 55 | */ |
||
| 56 | public function getController() |
||
| 63 | } |
||
| 64 | } |