spec\Prophecy\Promise\ReturnPromiseSpec::it_always_returns_last_value_left_in_the_return_values PHP Method

it_always_returns_last_value_left_in_the_return_values() public method

public it_always_returns_last_value_left_in_the_return_values ( Prophecy\Prophecy\ObjectProphecy $object, Prophecy\Prophecy\MethodProphecy $method )
$object Prophecy\Prophecy\ObjectProphecy
$method Prophecy\Prophecy\MethodProphecy
    function it_always_returns_last_value_left_in_the_return_values(ObjectProphecy $object, MethodProphecy $method)
    {
        $this->execute(array(), $object, $method)->shouldReturn(42);
        $this->execute(array(), $object, $method)->shouldReturn(42);
    }