PhpSandbox\PHPSandbox::unsetFuncValidator PHP 메소드

unsetFuncValidator() 공개 메소드

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