Skip to content
Snippets Groups Projects
Unverified Commit 224ac3c0 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3069026 by anmolgoyal74, Pooja Ganjage, mikelutz, longwave, alexpott,...

Issue #3069026 by anmolgoyal74, Pooja Ganjage, mikelutz, longwave, alexpott, xjm: Fix Call to deprecated method addAutowiringType() of class Symfony\Component\DependencyInjection\Definition in YamlFileLoader

(cherry picked from commit 29397a9f)
parent 4575b099
No related branches found
No related tags found
No related merge requests found
...@@ -292,24 +292,6 @@ private function parseDefinition($id, $service, $file) ...@@ -292,24 +292,6 @@ private function parseDefinition($id, $service, $file)
$definition->setAutowired($service['autowire']); $definition->setAutowired($service['autowire']);
} }
if (isset($service['autowiring_types'])) {
if (is_string($service['autowiring_types'])) {
$definition->addAutowiringType($service['autowiring_types']);
} else {
if (!is_array($service['autowiring_types'])) {
throw new InvalidArgumentException(sprintf('Parameter "autowiring_types" must be a string or an array for service "%s" in %s. Check your YAML syntax.', $id, $file));
}
foreach ($service['autowiring_types'] as $autowiringType) {
if (!is_string($autowiringType)) {
throw new InvalidArgumentException(sprintf('A "autowiring_types" attribute must be of type string for service "%s" in %s. Check your YAML syntax.', $id, $file));
}
$definition->addAutowiringType($autowiringType);
}
}
}
$this->container->setDefinition($id, $definition); $this->container->setDefinition($id, $definition);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment