Check if LDAP logger is defined

This commit is contained in:
Frederic Guillot
2016-03-27 18:44:03 -04:00
parent d0a0be89f2
commit febbd8cace
3 changed files with 13 additions and 1 deletions

View File

@@ -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;
}
}