diff --git a/src/Http/GuzzleHttpClient.php b/src/Http/GuzzleHttpClient.php index 7f4f73f..7db2e11 100644 --- a/src/Http/GuzzleHttpClient.php +++ b/src/Http/GuzzleHttpClient.php @@ -134,7 +134,7 @@ private function request( ->request( $method->name, $uri, - [ + array_merge([ 'base_uri' => self::BASE_URI, 'http_errors' => false, 'headers' => [ @@ -144,7 +144,7 @@ private function request( ], 'query' => $query, 'json' => $body, - ] + $this->options, + ], $this->options), ); } catch (Throwable $exception) { throw new HttpException($exception->getMessage());