Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function redirect(string $location, int $code = 301) |
||
25 | { |
||
26 | if (in_array($code, array_keys(Response::HTTP_STATUS_CODES))) { |
||
27 | $this->triggerRedirect($location, $code); |
||
28 | return true; |
||
29 | } |
||
30 | |||
31 | throw new InvalidArgumentException('Target url is invalid or status code is unknown'); |
||
32 | } |
||
33 | |||
51 | } |