Viewing file: Redirector.php (1.79 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Laravel\Lumen\Http;
use Illuminate\Http\RedirectResponse; use Laravel\Lumen\Application;
class Redirector { /** * The application instance. * * @var \Laravel\Lumen\Application */ protected $app;
/** * Create a new redirector instance. * * @param \Laravel\Lumen\Application $app * @return void */ public function __construct(Application $app) { $this->app = $app; }
/** * Create a new redirect response to the given path. * * @param string $path * @param int $status * @param array $headers * @param bool $secure * @return \Illuminate\Http\RedirectResponse */ public function to($path, $status = 302, $headers = [], $secure = null) { $path = $this->app->make('url')->to($path, [], $secure);
return $this->createRedirect($path, $status, $headers); }
/** * Create a new redirect response to a named route. * * @param string $route * @param array $parameters * @param int $status * @param array $headers * @return \Illuminate\Http\RedirectResponse */ public function route($route, $parameters = [], $status = 302, $headers = []) { $path = $this->app->make('url')->route($route, $parameters);
return $this->to($path, $status, $headers); }
/** * Create a new redirect response. * * @param string $path * @param int $status * @param array $headers * @return \Illuminate\Http\RedirectResponse */ protected function createRedirect($path, $status, $headers) { $redirect = new RedirectResponse($path, $status, $headers);
$redirect->setRequest($this->app->make('request'));
return $redirect; } }
|