Browse Source

changed auth and view variables to protected.

Taylor Otwell 13 years ago
parent
commit
09feb52db9
2 changed files with 2 additions and 9 deletions
  1. 1 1
      system/auth.php
  2. 1 8
      system/view.php

+ 1 - 1
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.

+ 1 - 8
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.