Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function __construct(int $redirectResponseCode) |
||
27 | { |
||
28 | if (!in_array($redirectResponseCode, [201, 301, 302, 303, 307, 308], true)) { |
||
29 | throw new InvalidArgumentException(sprintf( |
||
30 | 'Invalid redirect response code "%s" (must be 201, 301, 302, 303, 307, or 308).', $redirectResponseCode |
||
31 | )); |
||
32 | } |
||
33 | |||
34 | $this->redirectResponseCode = $redirectResponseCode; |
||
35 | } |
||
36 | |||
45 |