bug #17823 [DependencyInjection] fix dumped YAML string (xabbuh)

This PR was merged into the 2.3 branch.

Discussion
----------

[DependencyInjection] fix dumped YAML string

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Commits
-------

b1bb135 [DependencyInjection] fix dumped YAML string
This commit is contained in:
Tobias Schultze 2016-02-17 22:06:18 +01:00
commit d3114d1778
1 changed files with 4 additions and 4 deletions

View File

@ -88,7 +88,7 @@ class YamlDumper extends Dumper
}
if ($definition->getFile()) {
$code .= sprintf(" file: %s\n", $definition->getFile());
$code .= sprintf(" file: %s\n", $this->dumper->dump($definition->getFile()));
}
if ($definition->isSynthetic()) {
@ -108,11 +108,11 @@ class YamlDumper extends Dumper
}
if ($definition->getFactoryMethod()) {
$code .= sprintf(" factory_method: %s\n", $definition->getFactoryMethod());
$code .= sprintf(" factory_method: %s\n", $this->dumper->dump($definition->getFactoryMethod()));
}
if ($definition->getFactoryService()) {
$code .= sprintf(" factory_service: %s\n", $definition->getFactoryService());
$code .= sprintf(" factory_service: %s\n", $this->dumper->dump($definition->getFactoryService()));
}
if ($definition->getArguments()) {
@ -128,7 +128,7 @@ class YamlDumper extends Dumper
}
if (ContainerInterface::SCOPE_CONTAINER !== $scope = $definition->getScope()) {
$code .= sprintf(" scope: %s\n", $scope);
$code .= sprintf(" scope: %s\n", $this->dumper->dump($scope));
}
if ($callable = $definition->getConfigurator()) {