Commit 659fd50a by Taylor Otwell

change function type in payload.

parent bd532ee4
...@@ -23,18 +23,18 @@ class Payload { ...@@ -23,18 +23,18 @@ class Payload {
public $session; public $session;
/** /**
* Indicates if the session already exists in storage. * The session driver used to retrieve and store the session payload.
* *
* @var bool * @var Driver
*/ */
protected $exists = true; public $driver;
/** /**
* The session driver used to retrieve and store the session payload. * Indicates if the session already exists in storage.
* *
* @var Driver * @var bool
*/ */
protected $driver; public $exists = true;
/** /**
* Create a new session payload instance. * Create a new session payload instance.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment