Sfoglia il codice sorgente

Update routing.rst

Changed $collection->add('myCustomAction'); to $collection->add('myCustom'); #Action gets added automaticly
NoScopie 11 anni fa
parent
commit
9a39ba3f11
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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');
         }
     }