PhpSandbox\PHPSandbox::unsetSuperglobalValidator PHP Method

unsetSuperglobalValidator() public method

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