PhpSandbox\PHPSandbox::unsetOperatorValidator PHP Method

unsetOperatorValidator() public method

Unset validation callable for operators
public unsetOperatorValidator ( ) : PHPSandbox
return PHPSandbox Returns the PHPSandbox instance for fluent querying
    public function unsetOperatorValidator()
    {
        $this->validation['operator'] = null;
        return $this;
    }
PHPSandbox