Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
16 | public function __construct(array $invalidParameters, string $detail = null, string $instance = null) |
||
17 | { |
||
18 | parent::__construct( |
||
19 | 'https://tools.ietf.org/html/rfc4918#section-11.2', |
||
20 | 422, |
||
21 | 2 | 'Unprocessable Entity', |
|
22 | $detail, |
||
23 | 2 | $instance |
|
24 | 2 | ); |
|
25 | 2 | ||
26 | 2 | $this->invalidParameters = $invalidParameters; |
|
27 | } |
||
34 |