change function type in payload.

This commit is contained in:
Taylor Otwell 2012-01-31 11:47:55 -06:00
parent bd532ee4b0
commit 659fd50a65
1 changed files with 8 additions and 8 deletions

View File

@ -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.