SessionManager
class SessionManager extends Manager mixin Store
Traits
Properties
| protected Repository | $config | The configuration repository instance. |
from Manager |
| protected array | $customCreators | The registered custom driver creators. |
from Manager |
| protected array | $drivers | The array of created "drivers". |
from Manager |
Methods
Get the default session driver name.
Call a custom driver creator.
Dynamically call the default driver instance.
Create an instance of the "null" session driver.
Create an instance of the "array" session driver.
Create an instance of the "cookie" session driver.
Create an instance of the file session driver.
Create an instance of the file session driver.
Create an instance of the database session driver.
Create an instance of the Redis session driver.
Create the cache based session handler instance.
Determine if requests for the same session should wait for each to finish before executing.
Get the name of the cache store / driver that should be used to acquire session locks.
Get the maximum number of seconds the session lock should be held for.
Get the maximum number of seconds to wait while attempting to acquire a route block session lock.
Get the session configuration.
Set the default session driver name.
Details
in
RebindsCallbacksToSelf at line 18
protected Closure|null
bindCallbackToSelf(Closure $callback)
Bind the provided callback to the class instance.
at line 216
string
getDefaultDriver()
Get the default session driver name.
in
Manager at line 53
mixed
driver(UnitEnum|string|null $driver = null)
Get a driver instance.
in
Manager at line 78
protected mixed
createDriver(string $driver)
Create a new driver instance.
at line 24
protected mixed
callCustomCreator(string $driver)
Call a custom driver creator.
in
Manager at line 112
Manager
extend(string $driver, Closure $callback)
Register a custom driver creator Closure.
Boot-only. The callback persists in the singleton's customCreators array for the worker lifetime and applies to every subsequent driver resolution.
in
Manager at line 129
array
getDrivers()
Get all of the created "drivers".
in
Manager at line 151
Manager
setContainer(Container $container)
Set the container instance used by the manager.
Tests only. Swaps the singleton's container reference; per-request use races across coroutines and breaks every concurrent driver resolution through this manager.
in
Manager at line 167
Manager
forgetDrivers()
Forget all of the resolved driver instances.
Boot or tests only. Clears the singleton's driver cache; concurrent coroutines may already hold references that next resolution will not share.
in
Manager at line 177
mixed
__call(string $method, array $parameters)
Dynamically call the default driver instance.
at line 32
protected Store
createNullDriver()
Create an instance of the "null" session driver.
at line 40
protected Store
createArrayDriver()
Create an instance of the "array" session driver.
at line 50
protected Store
createCookieDriver()
Create an instance of the "cookie" session driver.
at line 62
protected Store
createFileDriver()
Create an instance of the file session driver.
at line 70
protected Store
createNativeDriver()
Create an instance of the file session driver.
at line 84
protected Store
createDatabaseDriver()
Create an instance of the database session driver.
at line 102
protected Store
createRedisDriver()
Create an instance of the Redis session driver.
at line 133
protected CacheBasedSessionHandler
createCacheHandler(string $driver)
Create the cache based session handler instance.
at line 147
protected Store
buildSession(SessionHandlerInterface $handler)
Build the session instance.
at line 162
protected EncryptedStore
buildEncryptedSession(SessionHandlerInterface $handler)
Build the encrypted session instance.
at line 176
bool
shouldBlock()
Determine if requests for the same session should wait for each to finish before executing.
at line 184
string|null
blockDriver()
Get the name of the cache store / driver that should be used to acquire session locks.
at line 192
int
defaultRouteBlockLockSeconds()
Get the maximum number of seconds the session lock should be held for.
at line 200
int
defaultRouteBlockWaitSeconds()
Get the maximum number of seconds to wait while attempting to acquire a route block session lock.
at line 208
array
getSessionConfig()
Get the session configuration.
at line 226
void
setDefaultDriver(UnitEnum|string $name)
Set the default session driver name.
Boot-only. Mutates process-global config; per-request use races across coroutines.