Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Oct 3, 2023
1 parent 521679a commit c6bc5fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/FakeHttp.php
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ protected function createRequest(
\parse_str($request->getUri()->getQuery(), $uriQuery);
$query = \array_merge($uriQuery, $query);

Check warning on line 382 in src/Http/FakeHttp.php

View check run for this annotation

Codecov / codecov/patch

src/Http/FakeHttp.php#L380-L382

Added lines #L380 - L382 were not covered by tests
} else {
$request = $request->getUri()->withQuery(\http_build_query($query));
$request = $request->withUri($request->getUri()->withQuery(\http_build_query($query)));
}

return $request
Expand Down

0 comments on commit c6bc5fd

Please sign in to comment.