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