From 09feb52db965211311a9bf8dfe7fecc7689f4615 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 8 Aug 2011 22:20:59 -0500 Subject: [PATCH] changed auth and view variables to protected. --- system/auth.php | 2 +- system/view.php | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/system/auth.php b/system/auth.php index 65d45b1d..fa9bc2c0 100644 --- a/system/auth.php +++ b/system/auth.php @@ -19,7 +19,7 @@ class Auth { * * @var string */ - private static $key = 'laravel_user_id'; + protected static $key = 'laravel_user_id'; /** * Determine if the current user of the application is authenticated. diff --git a/system/view.php b/system/view.php index 152c9bf2..81f4c426 100644 --- a/system/view.php +++ b/system/view.php @@ -35,14 +35,7 @@ class View { * * @var array */ - protected static $composers; - - /** - * The defined view names. - * - * @var array - */ - protected static $names; + public static $composers; /** * Create a new view instance.