1 | <?php |
||
29 | class FakeApiRequester extends AbstractRequester |
||
30 | { |
||
31 | /** |
||
32 | * @param RequestInterface $request |
||
33 | * @return Response|ResponseInterface |
||
34 | * @throws MessageException |
||
35 | * @throws ConfigNotFoundException |
||
36 | * @throws EnvironmentException |
||
37 | * @throws KeyNotFoundException |
||
38 | * @throws ClassNotFoundException |
||
39 | * @throws Error404Exception |
||
40 | * @throws Error405Exception |
||
41 | * @throws Error520Exception |
||
42 | * @throws InvalidClassException |
||
43 | * @throws InvalidArgumentException |
||
44 | * @throws ReflectionException |
||
45 | */ |
||
46 | protected function handleRequest(RequestInterface $request) |
||
50 | } |
||
51 |