spec\Prophecy\Argument\Token\ArrayEntryTokenSpec::its_string_representation_tells_that_its_an_array_containing_the_key_value_pair PHP Метод

its_string_representation_tells_that_its_an_array_containing_the_key_value_pair() публичный Метод

    function its_string_representation_tells_that_its_an_array_containing_the_key_value_pair($key, $value)
    {
        $key->__toString()->willReturn('key');
        $value->__toString()->willReturn('value');
        $this->__toString()->shouldBe('[..., key => value, ...]');
    }