Store
class Store implements Session
Traits
Constants
| CONTEXT_KEY |
The context key used to store the active session for the current request. |
| STARTED_CONTEXT_KEY_PREFIX |
Context key for whether the session has been started. |
| ATTRIBUTES_CONTEXT_KEY_PREFIX |
Context key for the session attributes. |
| ID_CONTEXT_KEY_PREFIX |
Context key for the session ID. |
| protected SUPPORTED_SERIALIZATIONS |
The supported session serialization strategies. |
| protected SESSION_ID_LENGTH |
The length of session ID strings. |
Properties
| static protected array | $macros | The registered string macros. |
from Macroable |
| protected string | $startedContextKey | The context key for whether this session has been started. |
|
| protected string | $attributesContextKey | The context key for this session's attributes. |
|
| protected string | $idContextKey | The context key for this session's ID. |
Methods
Mix another object into the class.
Dynamically handle calls to the class.
Dynamically handle calls to the class.
Create a new session instance.
Start the session, reading the data from a handler.
Get the session attributes.
Set the session attributes.
Replace the session attributes.
Load the session data from the handler.
Read the session data from the handler.
Prepare the raw string data from the session for unserialization.
Marshal the ViewErrorBag in the given session attributes.
Save the session data to storage.
Prepare the ViewErrorBag in the given session attributes for JSON serialization.
Prepare the serialized session data for storage.
Age the flash data for the session.
Age the flash data in the given session attributes.
Get all of the session data.
Get a subset of the session data.
Get all the session data except for a specified array of items.
Checks if a key exists.
Determine if the given key is missing from the session data.
Determine if a key is present and not null.
Determine if any of the given keys are present and not null.
Get an item from the session.
Get the value of a given key and then forget it.
Determine if the session contains old input.
Get the requested item from the flashed input array.
Replace the given session attributes entirely.
Put a key / value pair or array of key / value pairs in the session.
Push a value onto a session array.
Increment the value of an item in the session.
Decrement the value of an item in the session.
Flash a key / value pair to the session.
Flash a key / value pair to the session for immediate use.
Reflash all of the session flash data.
Reflash a subset of the current flash data.
Merge new flash keys into the new flash array.
Remove the given keys from the old flash data.
Flash an input array to the session.
Get the session cache instance.
Remove an item from the session, returning its value.
Remove one or many items from the session.
Remove all of the items from the session.
Flush the session data and regenerate the ID.
Generate a new session identifier.
Generate a new session ID for the session.
Determine if the session has been started.
Get the name of the session.
Set the name of the session.
Get the current session ID.
Get the current session ID.
Set the session ID.
Determine if this is a valid session ID.
Get a new, random session ID.
Set the existence of the session on the handler if applicable.
Get the CSRF token value.
Regenerate the CSRF token value.
Determine if the previous URI is available.
Get the previous URL from the session as a URI instance.
Get the previous URL from the session.
Set the "previous" URL in the session.
Get the previous route name from the session.
Set the "previous" route name in the session.
Specify that the user has confirmed their password.
Get the underlying session handler implementation.
Determine if the session handler needs a request.
Flush all static state.
Details
in
Macroable at line 28
static void
macro(string $name, callable|object $macro)
Register a custom macro.
Boot-only. Macros persist in a static property for the worker lifetime and apply to every subsequent call on the macroable class.
in
Macroable at line 41
static void
mixin(object $mixin, bool $replace = true)
Mix another object into the class.
Boot-only. Delegates to macro() for each method; registered macros persist in a static property for the worker lifetime.
in
Macroable at line 57
static bool
hasMacro(string $name)
Check if macro is registered.
in
Macroable at line 68
static void
flushMacros()
Flush the existing macros.
Boot or tests only. Clears worker-wide macros; concurrent coroutines may resolve different methods depending on timing.
in
Macroable at line 78
static mixed
__callStatic(string $method, array $parameters)
Dynamically handle calls to the class.
in
Macroable at line 103
mixed
__call(string $method, array $parameters)
Dynamically handle calls to the class.
at line 87
__construct(string $name, SessionHandlerInterface $handler, string|null $id = null, string $serialization = 'php')
Create a new session instance.
at line 116
bool
start()
Start the session, reading the data from a handler.
at line 130
protected array
getAttributes()
Get the session attributes.
at line 138
protected void
setAttributes(array $attributes)
Set the session attributes.
at line 146
protected void
replaceAttributes(array $attributes)
Replace the session attributes.
at line 157
protected void
loadSession()
Load the session data from the handler.
at line 167
protected array
readFromHandler()
Read the session data from the handler.
at line 187
protected string
prepareForUnserialize(string $data)
Prepare the raw string data from the session for unserialization.
at line 195
protected array
marshalErrorBagIn(array $attributes)
Marshal the ViewErrorBag in the given session attributes.
at line 217
void
save()
Save the session data to storage.
at line 244
protected array
prepareErrorBagForSerialization(array $attributes)
Prepare the ViewErrorBag in the given session attributes for JSON serialization.
at line 267
protected string
prepareForStorage(string $data)
Prepare the serialized session data for storage.
at line 275
void
ageFlashData()
Age the flash data for the session.
at line 283
protected array
ageFlashDataIn(array $attributes)
Age the flash data in the given session attributes.
at line 295
array
all()
Get all of the session data.
at line 303
array
only(array $keys)
Get a subset of the session data.
at line 311
array
except(array $keys)
Get all the session data except for a specified array of items.
at line 319
bool
exists(array|UnitEnum|string $key)
Checks if a key exists.
at line 331
bool
missing(array|UnitEnum|string $key)
Determine if the given key is missing from the session data.
at line 339
bool
has(array|UnitEnum|string $key)
Determine if a key is present and not null.
at line 349
bool
hasAny(array|UnitEnum|string $key)
Determine if any of the given keys are present and not null.
at line 359
mixed
get(UnitEnum|string $key, mixed $default = null)
Get an item from the session.
at line 367
mixed
pull(UnitEnum|string $key, mixed $default = null)
Get the value of a given key and then forget it.
at line 380
bool
hasOldInput(UnitEnum|string|null $key = null)
Determine if the session contains old input.
at line 390
mixed
getOldInput(UnitEnum|string|null $key = null, mixed $default = null)
Get the requested item from the flashed input array.
at line 398
void
replace(array $attributes)
Replace the given session attributes entirely.
at line 406
void
put(array|UnitEnum|string $key, mixed $value = null)
Put a key / value pair or array of key / value pairs in the session.
at line 423
mixed
remember(UnitEnum|string $key, Closure $callback)
Get an item from the session, or store the default value.
at line 437
void
push(UnitEnum|string $key, mixed $value)
Push a value onto a session array.
at line 449
mixed
increment(UnitEnum|string $key, int $amount = 1)
Increment the value of an item in the session.
at line 459
int
decrement(UnitEnum|string $key, int $amount = 1)
Decrement the value of an item in the session.
at line 467
void
flash(UnitEnum|string $key, mixed $value = true)
Flash a key / value pair to the session.
at line 481
void
now(UnitEnum|string $key, mixed $value)
Flash a key / value pair to the session for immediate use.
at line 493
void
reflash()
Reflash all of the session flash data.
at line 505
void
keep(mixed $keys = null)
Reflash a subset of the current flash data.
at line 515
protected void
mergeNewFlashes(array $keys)
Merge new flash keys into the new flash array.
at line 525
protected void
removeFromOldFlashData(array $keys)
Remove the given keys from the old flash data.
at line 533
void
flashInput(array $value)
Flash an input array to the session.
at line 541
Repository
cache()
Get the session cache instance.
at line 549
mixed
remove(UnitEnum|string $key)
Remove an item from the session, returning its value.
at line 562
void
forget(array|UnitEnum|string $keys)
Remove one or many items from the session.
at line 573
void
flush()
Remove all of the items from the session.
at line 581
bool
invalidate()
Flush the session data and regenerate the ID.
at line 591
bool
regenerate(bool $destroy = false)
Generate a new session identifier.
at line 601
bool
migrate(bool $destroy = false)
Generate a new session ID for the session.
at line 617
bool
isStarted()
Determine if the session has been started.
at line 625
string
getName()
Get the name of the session.
at line 636
void
setName(string $name)
Set the name of the session.
Boot-only. Mutates the shared session store name; per-request use races across coroutines and changes the cookie name for concurrent requests.
at line 644
string
id()
Get the current session ID.
at line 652
string
getId()
Get the current session ID.
at line 668
void
setId(string|null $id)
Set the session ID.
at line 679
bool
isValidId(string|null $id)
Determine if this is a valid session ID.
at line 687
protected string
generateSessionId()
Get a new, random session ID.
at line 695
void
setExists(bool $value)
Set the existence of the session on the handler if applicable.
at line 705
string|null
token()
Get the CSRF token value.
at line 713
void
regenerateToken()
Regenerate the CSRF token value.
at line 721
bool
hasPreviousUri()
Determine if the previous URI is available.
at line 731
Uri
previousUri()
Get the previous URL from the session as a URI instance.
at line 743
string|null
previousUrl()
Get the previous URL from the session.
at line 751
void
setPreviousUrl(string $url)
Set the "previous" URL in the session.
at line 759
string|null
previousRoute()
Get the previous route name from the session.
at line 767
void
setPreviousRoute(string|null $route)
Set the "previous" route name in the session.
at line 778
void
passwordConfirmed(string|null $guard = null)
Specify that the user has confirmed their password.
The confirmation is scoped to the given guard, or to the current default guard when none is given.
at line 788
SessionHandlerInterface
getHandler()
Get the underlying session handler implementation.
at line 800
SessionHandlerInterface
setHandler(SessionHandlerInterface $handler)
Set the underlying session handler implementation.
Boot-only. Replaces the handler on the shared session store; per-request use races across coroutines and can route session reads or writes through the wrong handler.
at line 808
bool
handlerNeedsRequest()
Determine if the session handler needs a request.
at line 816
void
setRequestOnHandler(Request $request)
Set the request on the handler instance.
at line 826
static void
flushState()
Flush all static state.