Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class RemoteException extends RuntimeException |
||
11 | { |
||
12 | /** @var ResponseInterface */ |
||
13 | private $response; |
||
14 | |||
15 | 7 | public function __construct(ResponseInterface $response, ?string $message = null, Throwable $previous = null) |
|
23 | 7 | } |
|
24 | |||
25 | /** |
||
26 | * @return ResponseInterface |
||
27 | */ |
||
28 | 2 | public function getResponse(): ResponseInterface |
|
33 |