| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 7 | class InvalidSignatureException extends RuntimeException |
||
| 8 | { |
||
| 9 | |||
| 10 | /** @var mixed[] */ |
||
| 11 | private $responseData; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param mixed[] $responseData |
||
| 15 | */ |
||
| 16 | 2 | public function __construct(array $responseData) |
|
| 20 | 2 | } |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @return mixed[] |
||
| 24 | */ |
||
| 25 | 2 | public function getResponseData(): array |
|
| 31 |