Change Auth classes properties to be protected

This commit is contained in:
Frederic Guillot
2016-01-05 21:23:19 -05:00
parent 023e0b7d53
commit 22568325c9
7 changed files with 34 additions and 34 deletions

View File

@@ -20,26 +20,26 @@ class LdapAuth extends Base implements PasswordAuthenticationProviderInterface
/**
* User properties
*
* @access private
* @access protected
* @var \Kanboard\User\LdapUserProvider
*/
private $userInfo = null;
protected $userInfo = null;
/**
* 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