Skip to content

Commit a8401f7

Browse files
Fixed issue with guzzle 7
1 parent a67d8f4 commit a8401f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Request/Http/Utils/RequestUtils.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static function createUri(string $host, string $path, array $queryParamet
2727
$uri = new Uri();
2828

2929
return $uri->withHost($host)
30-
->withPath('api/v1/' . $path)
30+
->withPath('/api/v1/' . $path)
3131
->withScheme('https')
3232
->withQuery(self::createQuery($queryParameters));
3333
}

0 commit comments

Comments
 (0)