Skip to content

Commit 97f6fc4

Browse files
committed
Fix repo name
1 parent b01a5cc commit 97f6fc4

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/jasontame/langgraph-platform-php/discussions/new?category=q-a
4+
url: https://github.com/jasontame/langgraph-client-php/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/jasontame/langgraph-platform-php/discussions/new?category=ideas
7+
url: https://github.com/jasontame/langgraph-client-php/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a security issue
10-
url: https://github.com/jasontame/langgraph-platform-php/security/policy
10+
url: https://github.com/jasontame/langgraph-client-php/security/policy
1111
about: Learn how to notify us for sensitive bugs

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Changelog
22

3-
All notable changes to `langgraph-platform-php` will be documented in this file.
3+
All notable changes to `langgraph-client-php` will be documented in this file.

src/Http/Client.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function __construct(array $config = [])
3636
'retries' => 3,
3737
'verify_ssl' => true,
3838
'default_headers' => [
39-
'User-Agent' => 'langgraph-platform-php/1.0',
39+
'User-Agent' => 'langgraph-client-php/1.0',
4040
'Accept' => 'application/json',
4141
'Content-Type' => 'application/json',
4242
],
@@ -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)