Skip to content

Commit

Permalink
Coding style change
Browse files Browse the repository at this point in the history
Added a space to adhere to correct coding style

Signed-off-by: joselameira <[email protected]>
  • Loading branch information
joselameira authored Oct 29, 2024
1 parent 9d288a9 commit 54eb45d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Controller/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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))
);
}

Expand Down

0 comments on commit 54eb45d

Please sign in to comment.