feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
62 changed files with 452 additions and 1589 deletions
Showing only changes of commit 15ba23bf23 - Show all commits

View File

@ -155,10 +155,11 @@ class Toku extends Controller
$output = [
'type' => $type,
'input' => $input,
'output' => [],
'success' => false
];
try {
$tokuService->update($input, $type);
$output['output'] = $tokuService->update($input, $type);
$output['success'] = true;
} catch (Exception $exception) {
$this->logger->error($exception);