Browse Source

Update routing.rst

Changed $collection->add('myCustomAction'); to $collection->add('myCustom'); #Action gets added automaticly
NoScopie 11 years ago
parent
commit
9a39ba3f11
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Resources/doc/reference/routing.rst

+ 1 - 1
Resources/doc/reference/routing.rst

@@ -102,7 +102,7 @@ explicitly this defaults to the action name.
     {
         protected function configureRoutes(RouteCollection $collection)
         {
-            $collection->add('myCustomAction');
+            $collection->add('myCustom'); #Action gets added automaticly
             $collection->add('view', $this->getRouterIdParameter().'/view');
         }
     }