From 030216761ad28e66794cd89e9ee169a88ffa2c21 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 13 Aug 2026 15:42:15 +0100 Subject: [PATCH] phpstan fix --- app/Livewire/LdapSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/LdapSettings.php b/app/Livewire/LdapSettings.php index 9536a4694e..8baaaa4e27 100644 --- a/app/Livewire/LdapSettings.php +++ b/app/Livewire/LdapSettings.php @@ -328,7 +328,7 @@ class LdapSettings extends Component #[Computed] public function hasPersistedLdapPword(): bool { - return ! empty(Setting::getSettings()?->ldap_pword); + return ! empty(Setting::getSettings()->ldap_pword); } public function goToStep(int $step): void