Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit aa1e8f1

Browse files
committed
Fix missing method in trait
- Closes #83
1 parent ec7a513 commit aa1e8f1

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/AdldapAuthUserProvider.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -340,14 +340,4 @@ protected function getLoginFallback()
340340
{
341341
return Config::get('adldap_auth.login_fallback', false);
342342
}
343-
344-
/**
345-
* Retrieves the default connection name from the configuration.
346-
*
347-
* @return mixed
348-
*/
349-
protected function getDefaultConnectionName()
350-
{
351-
return Config::get('adldap_auth.connection', 'default');
352-
}
353343
}

src/Traits/ImportsUsers.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,4 +311,14 @@ protected function getLimitationFilter()
311311
{
312312
return Config::get('adldap_auth.limitation_filter');
313313
}
314+
315+
/**
316+
* Retrieves the default connection name from the configuration.
317+
*
318+
* @return mixed
319+
*/
320+
protected function getDefaultConnectionName()
321+
{
322+
return Config::get('adldap_auth.connection', 'default');
323+
}
314324
}

0 commit comments

Comments
 (0)