Skip to content

Commit 1300f5c

Browse files
committed
Format code
1 parent 36a2579 commit 1300f5c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function put(string $uri, array $data = [], array $headers = [])
8585

8686
return $this->packer->unpack((string) $response->getBody());
8787
}
88-
88+
8989
public function patch(string $uri, array $data = [], array $headers = [])
9090
{
9191
$response = $this->request('PATCH', $uri, [

src/HttpClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function post(string|UriInterface $uri, array $data = [], array $headers
5858

5959
return $this->packer->unpack((string) $response->getBody());
6060
}
61-
61+
6262
public function put(string|UriInterface $uri, array $data = [], array $headers = [])
6363
{
6464
$response = $this->client->put($uri, [
@@ -68,7 +68,7 @@ public function put(string|UriInterface $uri, array $data = [], array $headers =
6868

6969
return $this->packer->unpack((string) $response->getBody());
7070
}
71-
71+
7272
public function patch(string|UriInterface $uri, array $data = [], array $headers = [])
7373
{
7474
$response = $this->client->patch($uri, [

0 commit comments

Comments
 (0)