Commit eec91f2b authored by Pavel's avatar Pavel
Browse files

type of logic operator

parent 397e5850
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;
    }
}