spec\Prophecy\Prophecy\MethodProphecySpec::it_adds_ReturnPromise_during_willReturn_call PHP Method

it_adds_ReturnPromise_during_willReturn_call() public method

    function it_adds_ReturnPromise_during_willReturn_call($objectProphecy)
    {
        $objectProphecy->addMethodProphecy($this)->willReturn(null);
        $this->willReturn(42);
        $this->getPromise()->shouldBeAnInstanceOf('Prophecy\\Promise\\ReturnPromise');
    }
MethodProphecySpec