ValidationLogicCriteria::getLogicalOperator PHP Method

getLogicalOperator() public method

Gets a Javascript symbol for the logical operator
public getLogicalOperator ( ) : string
return string
    public function getLogicalOperator()
    {
        return $this->logicalOperator == "or" ? "||" : "&&";
    }