From 94bd591035e6c8f0f76251cb09d47f2e577a4b6d Mon Sep 17 00:00:00 2001 From: Frank Keulen Date: Wed, 6 Oct 2021 16:49:42 +0200 Subject: [PATCH] Changed http_errors to false --- src/Client.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Client.php b/src/Client.php index e38d515..b6120ab 100644 --- a/src/Client.php +++ b/src/Client.php @@ -52,6 +52,7 @@ protected function client() { return $this->client ?? new GuzzleClient([ 'base_uri' => "{$this->url}/api/rest/", + 'http_errors' => false, 'headers' => [ 'Accept' => 'application/json', 'Authorization' => $this->token,