Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Redirect.php
Строк: 101
<?php
namespace IlluminateSupportFacades;
/**
* @method static IlluminateHttpRedirectResponse back(int $status = 302, array $headers = [], mixed $fallback = false)
* @method static IlluminateHttpRedirectResponse refresh(int $status = 302, array $headers = [])
* @method static IlluminateHttpRedirectResponse guest(string $path, int $status = 302, array $headers = [], bool|null $secure = null)
* @method static IlluminateHttpRedirectResponse intended(mixed $default = '/', int $status = 302, array $headers = [], bool|null $secure = null)
* @method static IlluminateHttpRedirectResponse to(string $path, int $status = 302, array $headers = [], bool|null $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, mixed $parameters = [], int $status = 302, array $headers = [])
* @method static IlluminateHttpRedirectResponse signedRoute(string $route, mixed $parameters = [], DateTimeInterface|DateInterval|int|null $expiration = null, int $status = 302, array $headers = [])
* @method static IlluminateHttpRedirectResponse temporarySignedRoute(string $route, DateTimeInterface|DateInterval|int|null $expiration, mixed $parameters = [], int $status = 302, array $headers = [])
* @method static IlluminateHttpRedirectResponse action(string|array $action, mixed $parameters = [], int $status = 302, array $headers = [])
* @method static IlluminateRoutingUrlGenerator getUrlGenerator()
* @method static void setSession(IlluminateSessionStore $session)
* @method static string|null getIntendedUrl()
* @method static IlluminateRoutingRedirector setIntendedUrl(string $url)
* @method static void macro(string $name, object|callable $macro)
* @method static void mixin(object $mixin, bool $replace = true)
* @method static bool hasMacro(string $name)
* @method static void flushMacros()
*
* @see IlluminateRoutingRedirector
*/
class Redirect extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'redirect';
}
}