Skip to content
Snippets Groups Projects
Commit d3a687c4 authored by Olav Morken's avatar Olav Morken
Browse files

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
parent 20d3be89
No related branches found
No related tags found
No related merge requests found
......@@ -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().
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment