diff --git a/quick_tour/the_controller.rst b/quick_tour/the_controller.rst index e6031ec8494..344d83d6569 100644 --- a/quick_tour/the_controller.rst +++ b/quick_tour/the_controller.rst @@ -205,8 +205,8 @@ different controller using the ``forward()`` method:: public function indexAction() { return $this->forward('AppBundle:Blog:index', array( - 'name' => $name - ); + 'name' => 'Fabien', + )); } }