From 15ba23bf23a3051b34d38deb43f3000ede4f29ea Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Thu, 3 Jul 2025 17:06:00 -0400 Subject: [PATCH] Toku update output --- app/src/Controller/API/Ventas/MediosPago/Toku.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);