From b2e0031422efa20ccc685e25c53d2b32690ee277 Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Mon, 15 Sep 2025 18:45:37 -0300 Subject: [PATCH] Cleanup --- app/src/Service/Venta/MediosPago/Toku/Subscription.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/Service/Venta/MediosPago/Toku/Subscription.php b/app/src/Service/Venta/MediosPago/Toku/Subscription.php index 01f7d98..4e1505c 100644 --- a/app/src/Service/Venta/MediosPago/Toku/Subscription.php +++ b/app/src/Service/Venta/MediosPago/Toku/Subscription.php @@ -99,13 +99,13 @@ class Subscription extends AbstractEndPoint public function queue(int $venta_id): bool { try { - $venta = $this->ventaService->getById($venta_id); + $this->ventaService->getById($venta_id); } catch (Read $exception) { $this->logger->warning($exception); return false; } try { - $subscription = $this->subscriptionRepsitory->fetchByVenta($venta_id); + $this->subscriptionRepsitory->fetchByVenta($venta_id); return false; } catch (EmptyResult) { return true;