PhpSandbox\PHPSandbox::unsetVarValidator PHP Method

unsetVarValidator() public method

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