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

Run the controller
public run ( ) : Response
Результат Symfony\Component\HttpFoundation\Response
Пример #1
0
 /**
  * Runs the main front end controller.
  *
  * @return Response
  */
 public function indexAction()
 {
     $this->container->get('contao.framework')->initialize();
     $controller = new FrontendIndex();
     return $controller->run();
 }