Bläddra i källkod

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

This fixes tests from the previous commit
Jordi Boggiano 14 år sedan
förälder
incheckning
6c7f484f6b
1 ändrade filer med 5 tillägg och 1 borttagningar
  1. 5 1
      src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php

+ 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;
+                        }
                     }
                 }