Skip to content

Commit

Permalink
bug: merging request body with query string inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
AmraniCh committed Dec 4, 2023
1 parent 86569d2 commit 3b7b83f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Psr7/Psr7RequestAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function getVariables()
return $this->getUriQueryVariables();
}

return $this->getBodyVariables();
return array_merge($this->getBodyVariables(), $this->getUriQueryVariables());
}

/**
Expand Down

0 comments on commit 3b7b83f

Please sign in to comment.