From 26aba1ffc5a5954d60d23dd2dc88af23b94c4ab0 Mon Sep 17 00:00:00 2001 From: rutger Rademaker Date: Thu, 13 Jan 2022 08:47:33 +0100 Subject: [PATCH] Import the correct class --- src/Client/RobinClient.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Client/RobinClient.php b/src/Client/RobinClient.php index dfb2cb9..a208d0e 100644 --- a/src/Client/RobinClient.php +++ b/src/Client/RobinClient.php @@ -7,6 +7,7 @@ namespace Emico\RobinHqLib\Client; +use Emico\RobinHqLib\Client\Exception\InvalidApiResponseException; use Emico\RobinHqLib\Config\Config; use Emico\RobinHqLib\Config\ConfigInterface; use Emico\RobinHqLib\Model\Collection; @@ -124,4 +125,4 @@ protected function post(string $path, $payload): ResponseInterface return $response; } -} \ No newline at end of file +}