| Total Complexity | 5 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 10 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class HttpResponder implements TransferInterface |
||
| 12 | { |
||
| 13 | public function __construct( |
||
| 14 | private HeaderInterface $header, |
||
| 15 | 9 | private ConditionalResponseInterface $condResponse, |
|
| 16 | ) { |
||
| 17 | 9 | } |
|
| 18 | 1 | ||
| 19 | /** |
||
| 20 | 1 | * {@inheritDoc} |
|
| 21 | */ |
||
| 22 | #[Override] |
||
| 38 | 8 | } |
|
| 39 | |||
| 40 | 9 | /** @param array<string, string> $server */ |
|
| 41 | private function getOutput(ResourceObject $ro, array $server): Output |
||
| 46 | } |
||
| 47 | } |
||
| 48 |