change function type in payload.
This commit is contained in:
parent
bd532ee4b0
commit
659fd50a65
|
@ -22,19 +22,19 @@ class Payload {
|
||||||
*/
|
*/
|
||||||
public $session;
|
public $session;
|
||||||
|
|
||||||
/**
|
|
||||||
* Indicates if the session already exists in storage.
|
|
||||||
*
|
|
||||||
* @var bool
|
|
||||||
*/
|
|
||||||
protected $exists = true;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The session driver used to retrieve and store the session payload.
|
* The session driver used to retrieve and store the session payload.
|
||||||
*
|
*
|
||||||
* @var Driver
|
* @var Driver
|
||||||
*/
|
*/
|
||||||
protected $driver;
|
public $driver;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates if the session already exists in storage.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $exists = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new session payload instance.
|
* Create a new session payload instance.
|
||||||
|
|
Loading…
Reference in New Issue