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