Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
14 | 1 | public function __construct(EvidenceResponse $response, ?Throwable $previous = null) |
|
15 | { |
||
16 | 1 | parent::__construct(sprintf('Invalid response received. Check response data for errors and warnings.'), 0, $previous); |
|
17 | 1 | $this->response = $response; |
|
18 | 1 | } |
|
19 | |||
26 |