PhpSandbox\PHPSandbox::unsetConstValidator PHP Method

unsetConstValidator() public method

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