Skip to content

Commit 5ea043e

Browse files
JasonTamegithub-actions[bot]
authored andcommitted
Fix styling
1 parent b29a0de commit 5ea043e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Http/Client.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ private function createClient(): GuzzleClient
5959
));
6060

6161
return new GuzzleClient([
62-
'base_uri' => rtrim($this->config['base_url'], '/') . '/',
62+
'base_uri' => rtrim($this->config['base_url'], '/').'/',
6363
'timeout' => $this->config['timeout'],
6464
'connect_timeout' => $this->config['connect_timeout'],
6565
'verify' => $this->config['verify_ssl'],
@@ -323,7 +323,7 @@ private function parseResponse(ResponseInterface $response): array
323323

324324
if (json_last_error() !== JSON_ERROR_NONE) {
325325
throw new LangGraphException(
326-
'Failed to decode JSON response: ' . json_last_error_msg(),
326+
'Failed to decode JSON response: '.json_last_error_msg(),
327327
$response->getStatusCode(),
328328
null,
329329
$response

0 commit comments

Comments
 (0)