handle(); $this->view->setVar('helps', $helps); } /** * @Get("/{id:[0-9]+}", name="web.help.show") */ public function showAction($id) { $service = new HelpInfoService(); $help = $service->handle($id); $this->view->setVar('help', $help); } }