fix/add-venta #44

Merged
aldarien merged 6 commits from fix/add-venta into develop 2025-10-03 12:13:05 -03:00
5 changed files with 72 additions and 4 deletions
Showing only changes of commit 032d00fbb6 - Show all commits

View File

@ -48,8 +48,8 @@ class Ine implements Provider
]); ]);
try { try {
$response = $this->client->get($request_uri); $response = $this->client->get($request_uri);
} catch (GuzzleException) { } catch (GuzzleException $exception) {
throw new EmptyResponse($request_uri); throw new EmptyResponse($request_uri, $exception);
} }
$body = $response->getBody(); $body = $response->getBody();
$json = json_decode($body->getContents()); $json = json_decode($body->getContents());