From 2ed9e5f65045bebf9e99c33ef1558dcd6d0206b7 Mon Sep 17 00:00:00 2001 From: Andrew Millington Date: Mon, 13 May 2024 22:35:12 +0100 Subject: [PATCH] Fix style issue --- src/Grant/AbstractGrant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grant/AbstractGrant.php b/src/Grant/AbstractGrant.php index 5e327de3c..ea0064c3b 100644 --- a/src/Grant/AbstractGrant.php +++ b/src/Grant/AbstractGrant.php @@ -273,7 +273,7 @@ public function validateScopes(string|array|null $scopes, string $redirectUri = */ private function convertScopesQueryStringToArray(string $scopes): array { - return array_filter(explode(self::SCOPE_DELIMITER_STRING, trim($scopes)), static fn($scope) => $scope !== ''); + return array_filter(explode(self::SCOPE_DELIMITER_STRING, trim($scopes)), static fn ($scope) => $scope !== ''); } /**