change function type in payload.
This commit is contained in:
parent
bd532ee4b0
commit
659fd50a65
|
@ -22,19 +22,19 @@ class Payload {
|
|||
*/
|
||||
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.
|
||||
*
|
||||
* @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.
|
||||
|
|
Loading…
Reference in New Issue