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