From c4b9ca5ab7643e63f132b41509573adf7fbe56ad Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Mon, 16 Dec 2024 23:05:15 -0300 Subject: [PATCH] FIX: Multiples condiciones en Select --- app/common/Implement/Database/Query/Select.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/Implement/Database/Query/Select.php b/app/common/Implement/Database/Query/Select.php index 0f7a88b..aa4874a 100644 --- a/app/common/Implement/Database/Query/Select.php +++ b/app/common/Implement/Database/Query/Select.php @@ -126,7 +126,7 @@ class Select extends Ideal\Query implements Define\Query\Select } protected function addCondition(string $condition): Select { - if (!isset($this->coditions)) { + if (!isset($this->conditions)) { $this->conditions = []; } $this->conditions []= $condition;