Skip to content

Commit

Permalink
Merge pull request #6 from rutgerrademaker/fix/composer-2-compatibility
Browse files Browse the repository at this point in the history
Fix composer 2 compatibilit issue
  • Loading branch information
bramstroker authored Jan 18, 2022
2 parents 8d98ab8 + 26aba1f commit 1442ab4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Client/Exception/InvalidApiResponseException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* @copyright (c) Emico B.V. 2017
*/

namespace Emico\RobinHqLib\Client;
namespace Emico\RobinHqLib\Client\Exception;

use Exception;

class InvalidApiResponseException extends Exception
{

}
}
3 changes: 2 additions & 1 deletion src/Client/RobinClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -124,4 +125,4 @@ protected function post(string $path, $payload): ResponseInterface

return $response;
}
}
}

0 comments on commit 1442ab4

Please sign in to comment.