From 42066cfca21da951b6600f6779707d5f7d5b6198 Mon Sep 17 00:00:00 2001 From: StillLoading <26272325+StillLoading@users.noreply.github.com> Date: Sat, 13 Nov 2021 17:31:35 +0100 Subject: [PATCH] Drop default case. OpenLDAP is already the default (see #5279) --- config/auth.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/config/auth.php b/config/auth.php index 93612859f7..f4abd22976 100644 --- a/config/auth.php +++ b/config/auth.php @@ -35,9 +35,6 @@ switch(env('LDAP_DIALECT')) { case 'FreeIPA': $ldapModel = class_exists(LdapRecord\Models\FreeIPA\User::class) ? LdapRecord\Models\FreeIPA\User::class : ''; break; - default: - # default to openLDAP - $ldapModel = class_exists(LdapRecord\Models\OpenLDAP\User::class) ? LdapRecord\Models\OpenLDAP\User::class : ''; } return [