Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
7 | class HttpRequestParamsMock extends HttpRequestParams |
||
8 | { |
||
9 | |||
10 | // TODO move to the mezon/transport package |
||
11 | /** |
||
12 | * Constructor |
||
13 | */ |
||
14 | public function __construct() |
||
15 | { |
||
16 | $router = new Router(); |
||
17 | |||
18 | parent::__construct($router); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * |
||
23 | * {@inheritdoc} |
||
24 | * @see HttpRequestParams::getParam() |
||
25 | */ |
||
26 | public function getParam($param, $default = false) |
||
29 | } |
||
30 | } |
||
31 |