class DemoController extends Controller
{
/**
* @Route("/hello/{name}", name="_demo_hello")
* @Template()
*/
public function helloAction($name)
{
return array('name' => $name);
}
// ...
}
/** * @Route("/hello/{name}", name="_demo_hello") * @Template() */
how can i move this to file routing.yml ? i would like create all routing in these file, not in action.