Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class FakeRequest extends Request |
||
19 | { |
||
20 | /** |
||
21 | * @inheritdoc |
||
22 | */ |
||
23 | public function getIsPost() |
||
24 | { |
||
25 | return true; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | public function post($name = null, $defaultValue = null) |
||
32 | { |
||
33 | return [ |
||
34 | 'NewsletterClient' => ['contacts' => '[email protected]'], |
||
35 | ]; |
||
38 |