We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9554dd commit 7f3a98bCopy full SHA for 7f3a98b
src/Client.php
@@ -38,7 +38,7 @@
38
*/
39
class Client
40
{
41
- const VERSION = '1.0.0';
+ const VERSION = '1.1.3';
42
43
const BASE_API = 'https://api.nexmo.com';
44
const BASE_REST = 'https://rest.nexmo.com';
@@ -344,7 +344,7 @@ public function send(\Psr\Http\Message\RequestInterface $request)
344
}
345
346
// Set the header. Build by joining all the parts we have with a space
347
- $request = $request->withHeader('user-agent', implode(" ", $userAgent));
+ $request = $request->withHeader('User-Agent', implode(" ", $userAgent));
348
349
$response = $this->client->sendRequest($request);
350
return $response;
0 commit comments