feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
165 changed files with 591 additions and 6294 deletions
Showing only changes of commit f9ae809fc4 - Show all commits

View File

@ -83,7 +83,7 @@ abstract class AbstractEndPoint extends LoggerEnabled implements EndPoint
protected function sendAdd(string $request_uri, array $data, array $validStatus, array $invalidStatus): bool
{
$params = $this->mapParams($data);
$this->logger->info('Send Add', ['uri' => $request_uri, 'data' => $data, 'params' => $params]);
$this->logger->info('Send Add', ['uri' => $request_uri, 'params' => $params]);
try {
$response = $this->client->post($request_uri, ['json' => $params]);
} catch (ClientExceptionInterface $exception) {