PhpSandbox\PHPSandbox::unsetTraitValidator PHP Method

unsetTraitValidator() public method

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