We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887a11c commit 920724cCopy full SHA for 920724c
src/Illuminate/Http/Client/PendingRequest.php
@@ -528,7 +528,7 @@ public function withUserAgent($userAgent)
528
public function withUrlParameters(array $parameters = [])
529
{
530
return tap($this, function () use ($parameters) {
531
- $this->urlParameters = $parameters;
+ $this->urlParameters = array_merge($this->urlParameters, $parameters);
532
});
533
}
534
0 commit comments