Assert\LazyAssertion::__call PHP Method

__call() public method

public __call ( $method, $args )
    public function __call($method, $args)
    {
        if ($this->alwaysTryAll === false && $this->thisChainTryAll === false && $this->currentChainFailed === true) {
            return $this;
        }
        try {
            call_user_func_array(array($this->currentChain, $method), $args);
        } catch (AssertionFailedException $e) {
            $this->errors[] = $e;
            $this->currentChainFailed = true;
        }
        return $this;
    }