From 659fd50a651762dcffb9c08bf461cf57105a5159 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 31 Jan 2012 11:47:55 -0600 Subject: [PATCH] change function type in payload. --- laravel/session/payload.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/laravel/session/payload.php b/laravel/session/payload.php index 0a248a3d..e6f55713 100644 --- a/laravel/session/payload.php +++ b/laravel/session/payload.php @@ -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.