We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72072e9 commit 713dfe3Copy full SHA for 713dfe3
book/http_fundamentals.rst
@@ -430,7 +430,7 @@ by adding an entry for ``/contact`` to your routing configuration file:
430
.. code-block:: xml
431
432
<route id="contact" path="/contact">
433
- <default key="_controller">AcmeBlogBundle:Main:contact</default>
+ <default key="_controller">AcmeDemoBundle:Main:contact</default>
434
</route>
435
436
.. code-block:: php
@@ -441,7 +441,7 @@ by adding an entry for ``/contact`` to your routing configuration file:
441
442
$collection = new RouteCollection();
443
$collection->add('contact', new Route('/contact', array(
444
- '_controller' => 'AcmeBlogBundle:Main:contact',
+ '_controller' => 'AcmeDemoBundle:Main:contact',
445
)));
446
447
return $collection;
0 commit comments