Skip to content

Commit 5b75ebd

Browse files
authored
Merge pull request #18 from anhofmann/patch-3
Don't add "?" to URL if $queryParameters is empty
2 parents 3a40c4b + faee63c commit 5b75ebd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/UrlGeneratorService.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ private function addSid(string $url, ?\Illuminate\Routing\Route $route = null):
2626

2727
// Rebuild the URL
2828
$url = str_replace('?' . $queryString, '', $url);
29-
$url .= '?' . http_build_query($queryParameters);
29+
if(!empty($queryParameters)) {
30+
$url .= '?' . http_build_query($queryParameters);
31+
}
3032

3133
return $url;
3234
}

0 commit comments

Comments
 (0)