Commit 0e5cff62 authored by Pavel's avatar Pavel Committed by e.rahmanova@iq-adv.ru
Browse files

type of logic operator

parent 81f00489
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -36,4 +36,14 @@ class FilterCollection extends AbstractCollection

        return $this;
    }

    /**
     * Получение типа логической операции
     *
     * @return LogicOperator
     */
    public function getLogicalType(): LogicOperator
    {
        return $this->type;
    }
}
+10 −0
Original line number Diff line number Diff line
@@ -36,4 +36,14 @@ class FilterGroupCollection extends AbstractCollection

        return $this;
    }

    /**
     * Получение типа логической операции
     *
     * @return LogicOperator
     */
    public function getLogicalType(): LogicOperator
    {
        return $this->type;
    }
}