[DependencyInjection] fixed espacing issue (close #2819)

This commit is contained in:
Fabien Potencier 2011-12-13 15:33:10 +01:00
parent f06105ce01
commit ec7eec5f35

View File

@ -145,7 +145,8 @@ class XmlDumper extends Dumper
}
if ($definition->getFile()) {
$file = $this->document->createElement('file', $definition->getFile());
$file = $this->document->createElement('file');
$file->appendChild($this->document->createTextNode($definition->getFile()));
$service->appendChild($file);
}