From 9afbf93cbbfc41059ea9f0376e4ccc19c647b9ee Mon Sep 17 00:00:00 2001 From: Normand lemay Date: Fri, 28 Jan 2022 13:46:03 -0500 Subject: [PATCH] Update GuzzleHttpAdapter.php change 1 to '1' --- src/Adapter/GuzzleHttpAdapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Adapter/GuzzleHttpAdapter.php b/src/Adapter/GuzzleHttpAdapter.php index 32b00e9..e4ef6ef 100644 --- a/src/Adapter/GuzzleHttpAdapter.php +++ b/src/Adapter/GuzzleHttpAdapter.php @@ -28,7 +28,7 @@ class GuzzleHttpAdapter implements Adapter { * @param integer $timeout * @param string $base_url */ - public function __construct($api_user, $api_key, $api_sandbox = 0, $timeout = 120, $base_url = Api::DEFAULT_ENDPOINT, ClientInterface $client = null) { + public function __construct($api_user, $api_key, $api_sandbox = '0', $timeout = 120, $base_url = Api::DEFAULT_ENDPOINT, ClientInterface $client = null) { $this->client = $client ?: new Client([ 'headers' => [ 'X-API-USER' => $api_user,