Преглед изворни кода

Merge remote branch 'craue/patch-1'

* craue/patch-1:
  removed unnecessary semicolon
Fabien Potencier пре 14 година
родитељ
комит
0dab2de6da
1 измењених фајлова са 1 додато и 1 уклоњено
  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];
-        };
+        }
     }
 
     /**