From d3a687c4a42cb6e73ba52975ea74c152c279be04 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Tue, 3 Aug 2010 12:56:36 +0000 Subject: [PATCH] SimpleSAML_Auth_LDAP: Make properties protected. To allow for subclassing, make the private properties protected instead. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2473 44740490-163a-0410-bde0-09ae8108e29a --- lib/SimpleSAML/Auth/LDAP.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/SimpleSAML/Auth/LDAP.php b/lib/SimpleSAML/Auth/LDAP.php index 5eec1306c..503fefc0f 100644 --- a/lib/SimpleSAML/Auth/LDAP.php +++ b/lib/SimpleSAML/Auth/LDAP.php @@ -27,19 +27,19 @@ class SimpleSAML_Auth_LDAP { * * @var resource */ - private $ldap = null; + protected $ldap = null; /** * LDAP user: authz_id if SASL is in use, binding dn otherwise */ - private $authz_id = null; + protected $authz_id = null; /** * Timeout value, in seconds. * * @var int */ - private $timeout = 0; + protected $timeout = 0; /** * Private constructor restricts instantiation to getInstance(). -- GitLab