summaryrefslogtreecommitdiff
path: root/app/Auth/DatabaseAuth.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-01-05 21:23:19 -0500
committerFrederic Guillot <fred@kanboard.net>2016-01-05 21:23:19 -0500
commit22568325c957f941ccb12751960fe99176ab0643 (patch)
tree234b37a4443f25b59f846318b0f475d887293505 /app/Auth/DatabaseAuth.php
parent023e0b7d5358ba4b33d198e8cd9e533a47bd3619 (diff)
Change Auth classes properties to be protected
Diffstat (limited to 'app/Auth/DatabaseAuth.php')
-rw-r--r--app/Auth/DatabaseAuth.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/Auth/DatabaseAuth.php b/app/Auth/DatabaseAuth.php
index 69260fe7..5a8ee64d 100644
--- a/app/Auth/DatabaseAuth.php
+++ b/app/Auth/DatabaseAuth.php
@@ -19,26 +19,26 @@ class DatabaseAuth extends Base implements PasswordAuthenticationProviderInterfa
/**
* User properties
*
- * @access private
+ * @access protected
* @var array
*/
- private $userInfo = array();
+ protected $userInfo = array();
/**
* Username
*
- * @access private
+ * @access protected
* @var string
*/
- private $username = '';
+ protected $username = '';
/**
* Password
*
- * @access private
+ * @access protected
* @var string
*/
- private $password = '';
+ protected $password = '';
/**
* Get authentication provider name