Change private properties to protected
This commit is contained in:
@@ -15,50 +15,50 @@ class LdapUserProvider implements UserProviderInterface
|
||||
/**
|
||||
* LDAP DN
|
||||
*
|
||||
* @access private
|
||||
* @access protected
|
||||
* @var string
|
||||
*/
|
||||
private $dn;
|
||||
protected $dn;
|
||||
|
||||
/**
|
||||
* LDAP username
|
||||
*
|
||||
* @access private
|
||||
* @access protected
|
||||
* @var string
|
||||
*/
|
||||
private $username;
|
||||
protected $username;
|
||||
|
||||
/**
|
||||
* User name
|
||||
*
|
||||
* @access private
|
||||
* @access protected
|
||||
* @var string
|
||||
*/
|
||||
private $name;
|
||||
protected $name;
|
||||
|
||||
/**
|
||||
* Email
|
||||
*
|
||||
* @access private
|
||||
* @access protected
|
||||
* @var string
|
||||
*/
|
||||
private $email;
|
||||
protected $email;
|
||||
|
||||
/**
|
||||
* User role
|
||||
*
|
||||
* @access private
|
||||
* @access protected
|
||||
* @var string
|
||||
*/
|
||||
private $role;
|
||||
protected $role;
|
||||
|
||||
/**
|
||||
* Group LDAP DNs
|
||||
*
|
||||
* @access private
|
||||
* @access protected
|
||||
* @var string[]
|
||||
*/
|
||||
private $groupIds;
|
||||
protected $groupIds;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
|
||||
Reference in New Issue
Block a user