Ouzo\Tests\Mock\WhenBuilder::thenAnswer PHP Method

thenAnswer() public method

public thenAnswer ( )
    public function thenAnswer()
    {
        foreach (func_get_args() as $callback) {
            $this->mock->_stubbed_calls[] = new CallStub($this->methodCall, $callback);
        }
        return $this;
    }