Completed
Push — master ( 789983...277954 )
by Frank
04:24
created
src/Routing/Loader/YamlFileLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -131,6 +131,9 @@
 block discarded – undo
131 131
         }
132 132
     }
133 133
 
134
+    /**
135
+     * @param string $file
136
+     */
134 137
     protected function parseImport(RouteCollection $collection, array $config, $path, $file)
135 138
     {
136 139
         $type = isset($config['type']) ? $config['type'] : 'i18n_routes';
Please login to merge, or discard this patch.
src/Routing/Loader/AnnotatedI18nRouteLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -234,6 +234,9 @@
 block discarded – undo
234 234
         return $globals;
235 235
     }
236 236
 
237
+    /**
238
+     * @param SymfonyRoute $annot
239
+     */
237 240
     protected function configureRoute(Route $route, ReflectionClass $class, ReflectionMethod $method, $annot)
238 241
     {
239 242
         $route->setDefault('_controller', $class->name . '::' . $method->getName());
Please login to merge, or discard this patch.