spec\Prophecy\Prophecy\MethodProphecySpec::its_constructor_does_not_touch_third_argument_if_it_is_null PHP Method

its_constructor_does_not_touch_third_argument_if_it_is_null() public method

    function its_constructor_does_not_touch_third_argument_if_it_is_null($objectProphecy)
    {
        $this->beConstructedWith($objectProphecy, 'getName', null);
        $wildcard = $this->getArgumentsWildcard();
        $wildcard->shouldBe(null);
    }
MethodProphecySpec