Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\SpecificationBagDenormalizer\SimpleSpecificationsDenormalizer::denormalizeCall PHP Method

denormalizeCall() private method

private denormalizeCall ( Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\SpecificationBagDenormalizer\CallsDenormalizerInterface $callsDenormalizer, $value, MethodCallBag $calls, Nelmio\Alice\FixtureInterface $scope, Nelmio\Alice\FixtureBuilder\Denormalizer\FlagParserInterface $parser ) : MethodCallBag
$callsDenormalizer Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\SpecificationBagDenormalizer\CallsDenormalizerInterface
$calls Nelmio\Alice\Definition\MethodCallBag
$scope Nelmio\Alice\FixtureInterface
$parser Nelmio\Alice\FixtureBuilder\Denormalizer\FlagParserInterface
return Nelmio\Alice\Definition\MethodCallBag
    private function denormalizeCall(CallsDenormalizerInterface $callsDenormalizer, $value, MethodCallBag $calls, FixtureInterface $scope, FlagParserInterface $parser) : MethodCallBag
    {
        foreach ($value as $methodCall) {
            $methodCall = $this->denormalizeCallMethod($callsDenormalizer, $methodCall, $scope, $parser);
            $calls = $calls->with($methodCall);
        }
        return $calls;
    }