1 | <?php |
||
9 | class MockClientException extends \RuntimeException implements RpcExceptionInterface |
||
10 | { |
||
11 | /** @var RpcRequestInterface */ |
||
12 | private $request; |
||
13 | /** @var RpcResponseInterface */ |
||
14 | private $response; |
||
15 | |||
16 | 2 | public static function emptyQueue(RpcRequestInterface $request) |
|
26 | |||
27 | 2 | public static function filterFailed(RpcRequestInterface $request, RpcResponseInterface $response) |
|
35 | |||
36 | /** |
||
37 | * @return RpcRequestInterface |
||
38 | */ |
||
39 | 3 | public function getRequest() |
|
43 | |||
44 | /** |
||
45 | * @return RpcResponseInterface |
||
46 | */ |
||
47 | 2 | public function getResponse() |
|
51 | } |
||
52 |