diff --git a/lib/Controller/LoginController.php b/lib/Controller/LoginController.php index 88c693b0..e33b3421 100644 --- a/lib/Controller/LoginController.php +++ b/lib/Controller/LoginController.php @@ -209,7 +209,7 @@ private function getRedirectResponse(?string $redirectUrl = null): RedirectRespo return new RedirectResponse( $redirectUrl === null ? null - : join('?', array_filter(parse_url($redirectUrl), fn($k) => in_array($k, ['path', 'query']), ARRAY_FILTER_USE_KEY)) + : join('?', array_filter(parse_url($redirectUrl), fn ($k) => in_array($k, ['path', 'query']), ARRAY_FILTER_USE_KEY)) ); }