FIX: Multiples condiciones en Select

This commit is contained in:
Juan Pablo Vial
2024-12-16 23:05:15 -03:00
parent e1b6fc7394
commit c4b9ca5ab7

View File

@ -126,7 +126,7 @@ class Select extends Ideal\Query implements Define\Query\Select
} }
protected function addCondition(string $condition): Select protected function addCondition(string $condition): Select
{ {
if (!isset($this->coditions)) { if (!isset($this->conditions)) {
$this->conditions = []; $this->conditions = [];
} }
$this->conditions []= $condition; $this->conditions []= $condition;