| Total Complexity | 5 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 31 | class IfConfigTest extends AbstractRequest |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * @Inject |
||
| 35 | * @var IfConfig |
||
| 36 | */ |
||
| 37 | private $request; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return IfConfig |
||
| 41 | */ |
||
| 42 | public function getRequest() |
||
| 43 | { |
||
| 44 | return $this->request; |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | public function getHeaders(): array |
||
| 51 | { |
||
| 52 | return []; |
||
| 53 | } |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @return string |
||
| 57 | */ |
||
| 58 | public function getRequestType(): string |
||
| 61 | } |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @return array |
||
| 65 | */ |
||
| 66 | public function getFields(): array |
||
| 69 | } |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @return string |
||
| 73 | */ |
||
| 74 | public function getUrl(): string |
||
| 79 |