denormalize() public method

Denormalizes a constructor.
public denormalize ( Nelmio\Alice\FixtureInterface $scope, Nelmio\Alice\FixtureBuilder\Denormalizer\FlagParserInterface $parser, array $unparsedConstructor ) : Nelmio\Alice\Definition\MethodCallInterface
$scope Nelmio\Alice\FixtureInterface
$parser Nelmio\Alice\FixtureBuilder\Denormalizer\FlagParserInterface
$unparsedConstructor array
return Nelmio\Alice\Definition\MethodCallInterface
 private function denormalizeConstructor($value, FixtureInterface $scope, FlagParserInterface $parser) : MethodCallInterface
 {
     return false === $value ? new NoMethodCall() : $this->constructorDenormalizer->denormalize($scope, $parser, $value);
 }