| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 33.33% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | 1 | class NullResponse implements IResponse |
|
| 15 | { |
||
| 16 | |||
| 17 | public function getContentType(): ?string |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getData(): iterable|stdClass|string |
||
| 23 | { |
||
| 24 | return ''; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Do nothing |
||
| 29 | */ |
||
| 30 | public function send(Http\IRequest $httpRequest, Http\IResponse $httpResponse): void |
||
| 32 | 1 | } |
|
| 33 | } |
||
| 34 |