| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 10 | 
| 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(  | 
            ||
| 26 | 'Invalid redirect response code "%s" (must be 201, 301, 302, 303, 307, or 308).', $redirectResponseCode  | 
            ||
| 27 | ));  | 
            ||
| 28 | }  | 
            ||
| 29 | |||
| 30 | $this->redirectResponseCode = $redirectResponseCode;  | 
            ||
| 31 | }  | 
            ||
| 32 | |||
| 38 |