Explorar o código

[Routing] Fix dumper so it doesn't print trailing whitespace

This fixes tests from the previous commit
Jordi Boggiano %!s(int64=14) %!d(string=hai) anos
pai
achega
6c7f484f6b

+ 5 - 1
src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php

@@ -121,7 +121,11 @@ EOF;
 
                 foreach ($this->compileRoutes($route, $supportsRedirections, $prefix) as $line) {
                     foreach (explode("\n", $line) as $l) {
-                        $code[] = $indent.$l;
+                        if ($l) {
+                            $code[] = $indent.$l;
+                        } else {
+                            $code[] = $l;
+                        }
                     }
                 }