Parcourir la source

Merge remote branch 'craue/patch-1'

* craue/patch-1:
  removed unnecessary semicolon
Fabien Potencier il y a 14 ans
Parent
commit
0dab2de6da
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/Symfony/Component/Routing/RouteCollection.php

+ 1 - 1
src/Symfony/Component/Routing/RouteCollection.php

@@ -97,7 +97,7 @@ class RouteCollection implements \IteratorAggregate
 
         if (isset($this->routes[$name])) {
             return $this->routes[$name];
-        };
+        }
     }
 
     /**