diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-13 21:02:32 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-13 21:02:32 -0500 |
commit | f9c676cf81d5ba11685c1b9aa8cab2e24048b305 (patch) | |
tree | fe1b43a92fea9ccd3e8bd557e9fc24fe77a0cc18 /app/Core/Ldap/Entry.php | |
parent | 2d85e0fab70db6fb242b83c8c03da122d3cd3ad8 (diff) |
Change private properties to protected
Diffstat (limited to 'app/Core/Ldap/Entry.php')
-rw-r--r-- | app/Core/Ldap/Entry.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Core/Ldap/Entry.php b/app/Core/Ldap/Entry.php index e67dd625..0b99a58b 100644 --- a/app/Core/Ldap/Entry.php +++ b/app/Core/Ldap/Entry.php @@ -13,10 +13,10 @@ class Entry /** * LDAP entry * - * @access private + * @access protected * @var array */ - private $entry = array(); + protected $entry = array(); /** * Constructor |