1 | <?php |
||
6 | class DefaultResponseFactory implements ResponseFactory { |
||
7 | /** |
||
8 | * @param ResponseData $data |
||
9 | * @param string $type |
||
10 | * @return Response |
||
11 | * @throws UnknownResponseTypeException |
||
12 | */ |
||
13 | public function getResponse(ResponseData $data, string $type): Response { |
||
21 | |||
22 | /** |
||
23 | * @return string[] |
||
24 | * @throws UnknownResponseTypeException |
||
25 | */ |
||
26 | public function getSupportedTypes(): array { |
||
31 | } |
||
32 |