Conditions | 2 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | 4 | public function __construct(Response $response, $code = 0, \Exception $previous = null) |
|
28 | { |
||
29 | 4 | $this->response = $response; |
|
30 | |||
31 | 4 | parent::__construct( |
|
32 | 4 | Response::$statusTexts[$response->getStatusCode()], |
|
33 | 4 | $code ?: $response->getStatusCode(), |
|
34 | $previous |
||
35 | 4 | ); |
|
36 | 4 | } |
|
37 | |||
62 |