feature/cierres #31

Merged
aldarien merged 462 commits from feature/cierres into develop 2025-09-11 17:05:18 -03:00
219 changed files with 761 additions and 10080 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) {