diff options
Diffstat (limited to 'app/Auth/LdapAuth.php')
-rw-r--r-- | app/Auth/LdapAuth.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/Auth/LdapAuth.php b/app/Auth/LdapAuth.php index 85234ed3..b4efbb55 100644 --- a/app/Auth/LdapAuth.php +++ b/app/Auth/LdapAuth.php @@ -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 |