Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 0 |
1 | <?php |
||
4 | class RabbitResponseException extends \Exception |
||
5 | { |
||
6 | /** |
||
7 | * @var array |
||
8 | */ |
||
9 | protected $rabbitResponse; |
||
10 | |||
11 | /** |
||
12 | * RabbitResponseException constructor. |
||
13 | * |
||
14 | * @param array $rabbitResponse |
||
15 | */ |
||
16 | 1 | public function __construct(array $rabbitResponse) |
|
20 | 1 | } |
|
21 | |||
22 | /** |
||
23 | * @return array |
||
24 | */ |
||
25 | public function getRabbitResponse(): array |
||
30 |