We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97f6fc4 commit 8c501f9Copy full SHA for 8c501f9
1 file changed
src/Http/Client.php
@@ -59,7 +59,7 @@ private function createClient(): GuzzleClient
59
));
60
61
return new GuzzleClient([
62
- 'base_uri' => rtrim($this->config['base_url'], '/') . '/',
+ 'base_uri' => rtrim($this->config['base_url'], '/').'/',
63
'timeout' => $this->config['timeout'],
64
'connect_timeout' => $this->config['connect_timeout'],
65
'verify' => $this->config['verify_ssl'],
@@ -323,7 +323,7 @@ private function parseResponse(ResponseInterface $response): array
323
324
if (json_last_error() !== JSON_ERROR_NONE) {
325
throw new LangGraphException(
326
- 'Failed to decode JSON response: ' . json_last_error_msg(),
+ 'Failed to decode JSON response: '.json_last_error_msg(),
327
$response->getStatusCode(),
328
null,
329
$response
0 commit comments