Skip to content

Commit

Permalink
Add missing type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Jan 6, 2022
1 parent 8611c00 commit d6aa5d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResponseBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ protected function getMethodFromRequest(RequestInterface $request): string
*
* @return string
*/
protected function getQueryFromRequest(RequestInterface $request, $replacement = '-'): string
protected function getQueryFromRequest(RequestInterface $request, string $replacement = '-'): string
{
$query = urldecode($request->getUri()->getQuery());
$parts = explode('&', $query);
Expand Down

0 comments on commit d6aa5d7

Please sign in to comment.