run() публичный Метод

Run the controller and parse the template
public run ( ) : Response
Результат Symfony\Component\HttpFoundation\Response
Пример #1
0
 /**
  * Renders the help content.
  *
  * @return Response
  *
  * @Route("/help", name="contao_backend_help")
  */
 public function helpAction()
 {
     $this->container->get('contao.framework')->initialize();
     $controller = new BackendHelp();
     return $controller->run();
 }