From 353e494992a7d8ef5f04ae12febd0811af849e84 Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Wed, 13 Apr 2022 13:11:30 +0000 Subject: [PATCH] - Fixed the merge --- src/Adapter/Ldap.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/Adapter/Ldap.php b/src/Adapter/Ldap.php index 7ea7ebb..0c255cb 100644 --- a/src/Adapter/Ldap.php +++ b/src/Adapter/Ldap.php @@ -177,4 +177,20 @@ class Ldap implements \Ulmus\Adapter\AdapterInterface { { return null; } + + public function repositoryClass() : string + { + return \Ulmus\Ldap\Repository::class; + } + + public function queryBuilderClass() : string + { + return \Ulmus\Ldap\QueryBuilder::class; + } + + public function tableSyntax() : array + { + return [ + ]; + } } \ No newline at end of file