Response.php 221 B

123456789101112
  1. <?php
  2. namespace App\Utils;
  3. class Response
  4. {
  5. public static function redirect($response, $to)
  6. {
  7. $newResponse = $response->withStatus(302)->withHeader('Location', $to);
  8. return $newResponse;
  9. }
  10. }