PhpSandbox\PHPSandbox::unsetKeywordValidator PHP Method

unsetKeywordValidator() public method

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