Skip to content

Commit 2ed9e5f

Browse files
committed
Fix style issue
1 parent 42ba1f8 commit 2ed9e5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Grant/AbstractGrant.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public function validateScopes(string|array|null $scopes, string $redirectUri =
273273
*/
274274
private function convertScopesQueryStringToArray(string $scopes): array
275275
{
276-
return array_filter(explode(self::SCOPE_DELIMITER_STRING, trim($scopes)), static fn($scope) => $scope !== '');
276+
return array_filter(explode(self::SCOPE_DELIMITER_STRING, trim($scopes)), static fn ($scope) => $scope !== '');
277277
}
278278

279279
/**

0 commit comments

Comments
 (0)