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.