PhpSandbox\PHPSandbox::unsetMagicConstValidator PHP Method

unsetMagicConstValidator() public method

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