| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class UnknownResponseException extends Exception |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var GuzzleResponseInterface |
||
| 23 | */ |
||
| 24 | private $response; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param GuzzleResponseInterface|null $response |
||
| 28 | * @param string $message |
||
| 29 | * @param Exception|null $previous |
||
| 30 | */ |
||
| 31 | 4 | public function __construct(GuzzleResponseInterface $response = null, $message = '', Exception $previous = null) |
|
| 39 | 4 | } |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return GuzzleResponseInterface |
||
| 43 | */ |
||
| 44 | 1 | public function getResponse() |
|
| 49 |