Code Duplication    Length = 3-3 lines in 2 locations

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php 2 locations

@@ 263-265 (lines=3) @@
260
        $template = "        require_once %s;\n";
261
        $code = '';
262
263
        if (null !== $file = $definition->getFile()) {
264
            $code .= sprintf($template, $this->dumpValue($file));
265
        }
266
267
        foreach ($this->getInlinedDefinitions($definition) as $definition) {
268
            if (null !== $file = $definition->getFile()) {
@@ 268-270 (lines=3) @@
265
        }
266
267
        foreach ($this->getInlinedDefinitions($definition) as $definition) {
268
            if (null !== $file = $definition->getFile()) {
269
                $code .= sprintf($template, $this->dumpValue($file));
270
            }
271
        }
272
273
        if ('' !== $code) {