Add generic LDAP client library

This commit is contained in:
Frederic Guillot
2015-11-27 09:15:12 -05:00
parent f837e70a2d
commit 2451706316
9 changed files with 800 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Kanboard\Core\Ldap;
use Exception;
/**
* LDAP Client Exception
*
* @package ldap
* @author Frederic Guillot
*/
class ClientException extends Exception
{
}