Total Complexity | 6 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 10 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class HttpResponder implements TransferInterface |
||
11 | { |
||
12 | public function __construct( |
||
13 | private HeaderInterface $header, |
||
14 | private ConditionalResponseInterface $condResponse, |
||
15 | ) { |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * {@inheritDoc} |
||
20 | */ |
||
21 | public function __invoke(ResourceObject $ro, array $server): void |
||
36 | } |
||
37 | |||
38 | /** @param array<string, string> $server */ |
||
39 | private function getOutput(ResourceObject $ro, array $server): Output |
||
44 | } |
||
45 | } |
||
46 |