PhpSandbox\PHPSandbox::unsetAliasValidator PHP 메소드

unsetAliasValidator() 공개 메소드

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