Skip to content

Commit

Permalink
style(http): return imidiately & revert change in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sladg committed Mar 3, 2023
1 parent 534832d commit fd7c292
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"static-analysis": [
"vendor/bin/phpstan analyse"
],
"unit-tests": [
"tests": [
"vendor/bin/phpunit --testsuite small"
]
},
Expand Down
3 changes: 1 addition & 2 deletions src/Event/Http/HttpRequestEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,6 @@ public function isFormatV2(): bool
*/
private function queryStringToArray(string $query): array
{
$queryString = Query::fromString($query);
return $queryString->toArray();
return Query::fromString($query)->toArray();
}
}

0 comments on commit fd7c292

Please sign in to comment.