Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and actions-user committed Feb 16, 2022
1 parent 4c5c59a commit b440ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QueryParameterBag.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static function fromString(string $query = ''): static

$parameters = [];
parse_str($query, $parameters);
$parameters = array_map(fn($param) => $param !== '' ? $param : null, $parameters);
$parameters = array_map(fn ($param) => $param !== '' ? $param : null, $parameters);

return new static($parameters);
}
Expand Down

0 comments on commit b440ad7

Please sign in to comment.