changed auth and view variables to protected.
This commit is contained in:
parent
aa1e20bcef
commit
09feb52db9
|
@ -19,7 +19,7 @@ class Auth {
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
private static $key = 'laravel_user_id';
|
protected static $key = 'laravel_user_id';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine if the current user of the application is authenticated.
|
* Determine if the current user of the application is authenticated.
|
||||||
|
|
|
@ -35,14 +35,7 @@ class View {
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected static $composers;
|
public static $composers;
|
||||||
|
|
||||||
/**
|
|
||||||
* The defined view names.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected static $names;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new view instance.
|
* Create a new view instance.
|
||||||
|
|
Loading…
Reference in New Issue