Преглед на файлове

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

This fixes tests from the previous commit
Jordi Boggiano преди 14 години
родител
ревизия
6c7f484f6b
променени са 1 файла, в които са добавени 5 реда и са изтрити 1 реда
  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;
+                        }
                     }
                 }