feature/cierres #31

Merged
aldarien merged 462 commits from feature/cierres into develop 2025-09-11 17:05:18 -03:00
228 changed files with 760 additions and 10271 deletions
Showing only changes of commit 2c175c8171 - Show all commits

View File

@ -42,7 +42,9 @@ class Login
$body = $response->getBody()->getContents();
$data = json_decode($body, true);
if (!key_exists('token', $data)) {
$this->logger->error('Token not found');
$this->logger->error('Token not found', [
'body' => $body
]);
return '';
}
file_put_contents($this->tokenFilename, $data['token']);