diff --git a/app/src/Controller/API/Ventas/MediosPago/Toku.php b/app/src/Controller/API/Ventas/MediosPago/Toku.php index 05b2bc2..fd6bf25 100644 --- a/app/src/Controller/API/Ventas/MediosPago/Toku.php +++ b/app/src/Controller/API/Ventas/MediosPago/Toku.php @@ -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);