summaryrefslogtreecommitdiff
path: root/app/Core/Ldap/Client.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-03-27 18:44:03 -0400
committerFrederic Guillot <fred@kanboard.net>2016-03-27 18:44:03 -0400
commitfebbd8cace0770930b08c01a4d07a2efbb959fd2 (patch)
tree5b894e88d105321ea3748ef7c6eab6b0f65fa8d8 /app/Core/Ldap/Client.php
parentd0a0be89f2a774e5438fe844d69541fecb5cafc4 (diff)
Check if LDAP logger is defined
Diffstat (limited to 'app/Core/Ldap/Client.php')
-rw-r--r--app/Core/Ldap/Client.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/Core/Ldap/Client.php b/app/Core/Ldap/Client.php
index cee67da5..867d67fe 100644
--- a/app/Core/Ldap/Client.php
+++ b/app/Core/Ldap/Client.php
@@ -198,4 +198,15 @@ class Client
{
return $this->logger;
}
+
+ /**
+ * Test if a logger is defined
+ *
+ * @access public
+ * @return boolean
+ */
+ public function hasLogger()
+ {
+ return $this->logger !== null;
+ }
}