Browse Source

change function type in payload.

Taylor Otwell 13 years ago
parent
commit
659fd50a65
1 changed files with 6 additions and 6 deletions
  1. 6 6
      laravel/session/payload.php

+ 6 - 6
laravel/session/payload.php

@@ -23,18 +23,18 @@ class Payload {
 	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.