Файл: system/vendor/illuminate/support/Facades/Redirect.php
Строк: 66
<?php
namespace IlluminateSupportFacades;
/**
* @method static IlluminateHttpRedirectResponse home(int $status = 302)
* @method static IlluminateHttpRedirectResponse back(int $status = 302, array $headers = [], $fallback = false)
* @method static IlluminateHttpRedirectResponse refresh(int $status = 302, array $headers = [])
* @method static IlluminateHttpRedirectResponse guest(string $path, int $status = 302, array $headers = [], bool $secure = null)
* @method static IlluminateHttpRedirectResponse intended(string $default = '/', int $status = 302, array $headers = [], bool $secure = null)
* @method static IlluminateHttpRedirectResponse to(string $path, int $status = 302, array $headers = [], bool $secure = null)
* @method static IlluminateHttpRedirectResponse away(string $path, int $status = 302, array $headers = [])
* @method static IlluminateHttpRedirectResponse secure(string $path, int $status = 302, array $headers = [])
* @method static IlluminateHttpRedirectResponse route(string $route, array $parameters = [], int $status = 302, array $headers = [])
* @method static IlluminateHttpRedirectResponse action(string $action, array $parameters = [], int $status = 302, array $headers = [])
* @method static IlluminateRoutingUrlGenerator getUrlGenerator()
* @method static void setSession(IlluminateSessionStore $session)
*
* @see IlluminateRoutingRedirector
*/
class Redirect extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'redirect';
}
}