Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
21 | 2 | public function __construct(int $maxUriLength, string $detail = null, string $instance = null) |
|
22 | { |
||
23 | 2 | parent::__construct( |
|
24 | 2 | 'https://tools.ietf.org/html/rfc2616#section-10.4.15', |
|
25 | 2 | 414, |
|
26 | 2 | 'Request Uri Too Long', |
|
27 | $detail, |
||
28 | $instance |
||
29 | ); |
||
30 | |||
31 | 2 | $this->maxUriLength = $maxUriLength; |
|
32 | 2 | } |
|
33 | |||
42 |