feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
167 changed files with 598 additions and 6351 deletions
Showing only changes of commit f2169c9536 - Show all commits

View File

@ -2,6 +2,7 @@
namespace Incoviba\Service\Venta\MediosPago;
use InvalidArgumentException;
use PDO;
use Psr\Http\Message\ServerRequestInterface;
use Incoviba\Common\Define\Connection;
use Incoviba\Common\Ideal;
@ -440,7 +441,7 @@ class Toku extends Ideal\Service
$params = [true, "%\"{$eventType}\"%"];
$statement = $this->connection->prepare($query);
$statement->execute($params);
$results = $statement->fetchColumn();
$results = $statement->fetchAll(PDO::FETCH_COLUMN);
if (count($results) === 0) {
return false;
}