PhpSandbox\PHPSandbox::unsetFuncValidator PHP Method

unsetFuncValidator() public method

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