class Session extends Facade

Properties

static protected $app

The application instance being facaded.

from  Facade
static protected array $resolvedInstance

The resolved object instances.

from  Facade
static protected bool $cached

Indicates if the resolved instance should be cached.

from  Facade

Methods

static void
resolved(Closure $callback)

Run a Closure when the facade has been resolved.

from  Facade
static 
spy()

Convert the facade into a Mockery spy.

from  Facade
static 
partialMock()

Initiate a partial mock on the facade.

from  Facade
static 
shouldReceive()

Initiate a mock expectation on the facade.

from  Facade
static 
expects()

Initiate a mock expectation on the facade.

from  Facade
static 
createFreshMockInstance()

Create a fresh mock instance for the given class.

from  Facade
static 
createMock()

Create a fresh mock instance for the given class.

from  Facade
static bool
isMock()

Determines whether a mock is set as the instance of the facade.

from  Facade
static string|null
getMockableClass()

Get the mockable class for the bound instance.

from  Facade
static 
swap(mixed $instance)

Hotswap the underlying instance behind the facade.

from  Facade
static bool
isFake()

Determines whether a "fake" has been set as the facade instance.

from  Facade
static mixed
getFacadeRoot()

Get the root object behind the facade.

from  Facade
static string
getFacadeAccessor()

Get the registered name of the component.

static mixed
resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

from  Facade
static void
clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

from  Facade
static void
clearResolvedInstances()

Clear all of the resolved instances.

from  Facade
static Collection
defaultAliases()

Get the application default aliases.

from  Facade
static 
getFacadeApplication()

Get the application instance behind the facade.

from  Facade
static void
setFacadeApplication(mixed $app)

Set the application instance.

from  Facade
static 
__callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

from  Facade
static bool
shouldBlock()

No description

static string|null
blockDriver()

No description

static int
defaultRouteBlockLockSeconds()

No description

static int
defaultRouteBlockWaitSeconds()

No description

static array
getSessionConfig()

No description

static string
getDefaultDriver()

No description

static void
setDefaultDriver(UnitEnum|string $name)

No description

static mixed
driver(UnitEnum|string|null $driver = 'null')

No description

static SessionManager
extend(string $driver, Closure $callback)

No description

static array
getDrivers()

No description

static Container
getContainer()

No description

static SessionManager
setContainer(Container $container)

No description

static SessionManager
forgetDrivers()

No description

static bool
start()

No description

static void
save()

No description

static void
ageFlashData()

No description

static array
all()

No description

static array
only(array $keys)

No description

static array
except(array $keys)

No description

static bool
exists(UnitEnum|array|string $key)

No description

static bool
missing(UnitEnum|array|string $key)

No description

static bool
has(UnitEnum|array|string $key)

No description

static bool
hasAny(UnitEnum|array|string $key)

No description

static mixed
get(UnitEnum|string $key, mixed $default = 'null')

No description

static mixed
pull(UnitEnum|string $key, mixed $default = 'null')

No description

static bool
hasOldInput(UnitEnum|string|null $key = 'null')

No description

static mixed
getOldInput(UnitEnum|string|null $key = 'null', mixed $default = 'null')

No description

static void
replace(array $attributes)

No description

static void
put(UnitEnum|array|string $key, mixed $value = 'null')

No description

static mixed
remember(UnitEnum|string $key, Closure $callback)

No description

static void
push(UnitEnum|string $key, mixed $value)

No description

static mixed
increment(UnitEnum|string $key, int $amount = '1')

No description

static int
decrement(UnitEnum|string $key, int $amount = '1')

No description

static void
flash(UnitEnum|string $key, mixed $value = 'true')

No description

static void
now(UnitEnum|string $key, mixed $value)

No description

static void
reflash()

No description

static void
keep(array|mixed $keys = 'null')

No description

static void
flashInput(array $value)

No description

static Repository
cache()

No description

static mixed
remove(UnitEnum|string $key)

No description

static void
forget(UnitEnum|array|string $keys)

No description

static void
flush()

No description

static bool
invalidate()

No description

static bool
regenerate(bool $destroy = 'false')

No description

static bool
migrate(bool $destroy = 'false')

No description

static bool
isStarted()

No description

static void
flushState()

No description

static string
getName()

No description

static void
setName(string $name)

No description

static string
id()

No description

static string
getId()

No description

static void
setId(string|null $id)

No description

static bool
isValidId(string|null $id)

No description

static void
setExists(bool $value)

No description

static string|null
token()

No description

static void
regenerateToken()

No description

static bool
hasPreviousUri()

No description

static Uri
previousUri()

No description

static string|null
previousUrl()

No description

static void
setPreviousUrl(string $url)

No description

static string|null
previousRoute()

No description

static void
setPreviousRoute(string|null $route)

No description

static void
passwordConfirmed(string|null $guard = 'null')

No description

getHandler()

No description

static bool
handlerNeedsRequest()

No description

static void
setRequestOnHandler(Request $request)

No description

static void
macro(string $name, callable|object $macro)

No description

static void
mixin(object $mixin, bool $replace = 'true')

No description

static bool
hasMacro(string $name)

No description

static void
flushMacros()

No description

Details

in Facade at line 55
static void resolved(Closure $callback)

Run a Closure when the facade has been resolved.

Boot-only. The callback is registered on the worker-global container and runs for every subsequent resolution of the facade accessor.

Parameters

Closure $callback

Return Value

void

in Facade at line 71
static spy()

Convert the facade into a Mockery spy.

in Facade at line 89
static partialMock()

Initiate a partial mock on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 105
static shouldReceive()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 121
static expects()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 135
static protected createFreshMockInstance()

Create a fresh mock instance for the given class.

in Facade at line 147
static protected createMock()

Create a fresh mock instance for the given class.

in Facade at line 157
static protected bool isMock()

Determines whether a mock is set as the instance of the facade.

Return Value

bool

in Facade at line 168
static protected string|null getMockableClass()

Get the mockable class for the bound instance.

Return Value

string|null

in Facade at line 184
static swap(mixed $instance)

Hotswap the underlying instance behind the facade.

Tests only. Replaces the worker-wide resolved facade instance and container binding; runtime use races across coroutines and changes every subsequent facade call.

Parameters

mixed $instance

in Facade at line 196
static bool isFake()

Determines whether a "fake" has been set as the facade instance.

Return Value

bool

in Facade at line 207
static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

at line 84
static protected string getFacadeAccessor()

Get the registered name of the component.

Return Value

string

in Facade at line 223
static protected mixed resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

Parameters

string $name

Return Value

mixed

in Facade at line 246
static void clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

Boot or tests only. Clears a worker-wide facade cache entry; concurrent coroutines may still hold the previous resolved instance.

Parameters

string|null $name

Return Value

void

in Facade at line 257
static void clearResolvedInstances()

Clear all of the resolved instances.

Boot or tests only. Clears the worker-wide facade cache; concurrent coroutines may still hold previously resolved instances.

Return Value

void

in Facade at line 265
static Collection defaultAliases()

Get the application default aliases.

Return Value

Collection

in Facade at line 324
static getFacadeApplication()

Get the application instance behind the facade.

in Facade at line 337
static void setFacadeApplication(mixed $app)

Set the application instance.

Tests only. Replaces the worker-wide facade application reference; runtime use races across coroutines and breaks every facade lookup.

Parameters

mixed $app

Return Value

void

in Facade at line 347
static __callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Exceptions

RuntimeException

at line 82
static bool shouldBlock()

No description

Return Value

bool

at line 82
static string|null blockDriver()

No description

Return Value

string|null

at line 82
static int defaultRouteBlockLockSeconds()

No description

Return Value

int

at line 82
static int defaultRouteBlockWaitSeconds()

No description

Return Value

int

at line 82
static array getSessionConfig()

No description

Return Value

array

at line 82
static string getDefaultDriver()

No description

Return Value

string

at line 82
static void setDefaultDriver(UnitEnum|string $name)

No description

Parameters

UnitEnum|string $name

Return Value

void

at line 82
static mixed driver(UnitEnum|string|null $driver = 'null')

No description

Parameters

UnitEnum|string|null $driver

Return Value

mixed

at line 82
static SessionManager extend(string $driver, Closure $callback)

No description

Parameters

string $driver
Closure $callback

Return Value

SessionManager

at line 82
static array getDrivers()

No description

Return Value

array

at line 82
static Container getContainer()

No description

Return Value

Container

at line 82
static SessionManager setContainer(Container $container)

No description

Parameters

Container $container

Return Value

SessionManager

at line 82
static SessionManager forgetDrivers()

No description

Return Value

SessionManager

at line 82
static bool start()

No description

Return Value

bool

at line 82
static void save()

No description

Return Value

void

at line 82
static void ageFlashData()

No description

Return Value

void

at line 82
static array all()

No description

Return Value

array

at line 82
static array only(array $keys)

No description

Parameters

array $keys

Return Value

array

at line 82
static array except(array $keys)

No description

Parameters

array $keys

Return Value

array

at line 82
static bool exists(UnitEnum|array|string $key)

No description

Parameters

UnitEnum|array|string $key

Return Value

bool

at line 82
static bool missing(UnitEnum|array|string $key)

No description

Parameters

UnitEnum|array|string $key

Return Value

bool

at line 82
static bool has(UnitEnum|array|string $key)

No description

Parameters

UnitEnum|array|string $key

Return Value

bool

at line 82
static bool hasAny(UnitEnum|array|string $key)

No description

Parameters

UnitEnum|array|string $key

Return Value

bool

at line 82
static mixed get(UnitEnum|string $key, mixed $default = 'null')

No description

Parameters

UnitEnum|string $key
mixed $default

Return Value

mixed

at line 82
static mixed pull(UnitEnum|string $key, mixed $default = 'null')

No description

Parameters

UnitEnum|string $key
mixed $default

Return Value

mixed

at line 82
static bool hasOldInput(UnitEnum|string|null $key = 'null')

No description

Parameters

UnitEnum|string|null $key

Return Value

bool

at line 82
static mixed getOldInput(UnitEnum|string|null $key = 'null', mixed $default = 'null')

No description

Parameters

UnitEnum|string|null $key
mixed $default

Return Value

mixed

at line 82
static void replace(array $attributes)

No description

Parameters

array $attributes

Return Value

void

at line 82
static void put(UnitEnum|array|string $key, mixed $value = 'null')

No description

Parameters

UnitEnum|array|string $key
mixed $value

Return Value

void

at line 82
static mixed remember(UnitEnum|string $key, Closure $callback)

No description

Parameters

UnitEnum|string $key
Closure $callback

Return Value

mixed

at line 82
static void push(UnitEnum|string $key, mixed $value)

No description

Parameters

UnitEnum|string $key
mixed $value

Return Value

void

at line 82
static mixed increment(UnitEnum|string $key, int $amount = '1')

No description

Parameters

UnitEnum|string $key
int $amount

Return Value

mixed

at line 82
static int decrement(UnitEnum|string $key, int $amount = '1')

No description

Parameters

UnitEnum|string $key
int $amount

Return Value

int

at line 82
static void flash(UnitEnum|string $key, mixed $value = 'true')

No description

Parameters

UnitEnum|string $key
mixed $value

Return Value

void

at line 82
static void now(UnitEnum|string $key, mixed $value)

No description

Parameters

UnitEnum|string $key
mixed $value

Return Value

void

at line 82
static void reflash()

No description

Return Value

void

at line 82
static void keep(array|mixed $keys = 'null')

No description

Parameters

array|mixed $keys

Return Value

void

at line 82
static void flashInput(array $value)

No description

Parameters

array $value

Return Value

void

at line 82
static Repository cache()

No description

Return Value

Repository

at line 82
static mixed remove(UnitEnum|string $key)

No description

Parameters

UnitEnum|string $key

Return Value

mixed

at line 82
static void forget(UnitEnum|array|string $keys)

No description

Parameters

UnitEnum|array|string $keys

Return Value

void

at line 82
static void flush()

No description

Return Value

void

at line 82
static bool invalidate()

No description

Return Value

bool

at line 82
static bool regenerate(bool $destroy = 'false')

No description

Parameters

bool $destroy

Return Value

bool

at line 82
static bool migrate(bool $destroy = 'false')

No description

Parameters

bool $destroy

Return Value

bool

at line 82
static bool isStarted()

No description

Return Value

bool

at line 82
static void flushState()

No description

Return Value

void

at line 82
static string getName()

No description

Return Value

string

at line 82
static void setName(string $name)

No description

Parameters

string $name

Return Value

void

at line 82
static string id()

No description

Return Value

string

at line 82
static string getId()

No description

Return Value

string

at line 82
static void setId(string|null $id)

No description

Parameters

string|null $id

Return Value

void

at line 82
static bool isValidId(string|null $id)

No description

Parameters

string|null $id

Return Value

bool

at line 82
static void setExists(bool $value)

No description

Parameters

bool $value

Return Value

void

at line 82
static string|null token()

No description

Return Value

string|null

at line 82
static void regenerateToken()

No description

Return Value

void

at line 82
static bool hasPreviousUri()

No description

Return Value

bool

at line 82
static Uri previousUri()

No description

Return Value

Uri

at line 82
static string|null previousUrl()

No description

Return Value

string|null

at line 82
static void setPreviousUrl(string $url)

No description

Parameters

string $url

Return Value

void

at line 82
static string|null previousRoute()

No description

Return Value

string|null

at line 82
static void setPreviousRoute(string|null $route)

No description

Parameters

string|null $route

Return Value

void

at line 82
static void passwordConfirmed(string|null $guard = 'null')

No description

Parameters

string|null $guard

Return Value

void

at line 82
static SessionHandlerInterface getHandler()

No description

at line 82
static SessionHandlerInterface setHandler(SessionHandlerInterface $handler)

No description

Parameters

SessionHandlerInterface $handler

Return Value

SessionHandlerInterface

at line 82
static bool handlerNeedsRequest()

No description

Return Value

bool

at line 82
static void setRequestOnHandler(Request $request)

No description

Parameters

Request $request

Return Value

void

at line 82
static void macro(string $name, callable|object $macro)

No description

Parameters

string $name
callable|object $macro

Return Value

void

at line 82
static void mixin(object $mixin, bool $replace = 'true')

No description

Parameters

object $mixin
bool $replace

Return Value

void

at line 82
static bool hasMacro(string $name)

No description

Parameters

string $name

Return Value

bool

at line 82
static void flushMacros()

No description

Return Value

void