Skip to content

Commit 5cfaf9c

Browse files
committed
Typo
1 parent 606f5a7 commit 5cfaf9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Clients/GuzzleClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct(HetznerAPIClient $client)
1818
'headers' => [
1919
'Authorization' => 'Bearer ' . $client->getApiToken(),
2020
'Content-Type' => 'application/json',
21-
'User-Agent' => (strlen($client->getUserAgent() > 0) ? ' ' . $client->getUserAgent() : '') . 'hcloud-php/' . HetznerAPIClient::VERSION
21+
'User-Agent' => (strlen($client->getUserAgent() > 0) ? $client->getUserAgent() . ' ' : '') . 'hcloud-php/' . HetznerAPIClient::VERSION
2222
],
2323
]);
2424
}

src/HetznerAPIClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class HetznerAPIClient
2323
/**
2424
* Version of the API Client
2525
*/
26-
const VERSION = "1.5.3";
26+
const VERSION = "1.5.4";
2727

2828
/**
2929
* @var string

0 commit comments

Comments
 (0)