Exemple #1
0
 public function __construct(KernelInterface $kernel, View $view, Request $request, Reader $annotationReader, Application $app = null)
 {
     parent::__construct($kernel, $request);
     $this->view = $view;
     $this->annotationReader = $annotationReader;
     $this->app = $app;
 }
 public function __construct(KernelInterface $kernel, $controller, $arguments, Request $request, Reesponse $response = null)
 {
     parent::__construct($kernel, $request);
     $this->setController($controller);
     $this->arguments = $arguments;
     $this->response = $request;
 }
 public function __construct(KernelInterface $kernel, Request $request, Response $response, ResponseAnnotation $annotations = null)
 {
     parent::__construct($kernel, $request);
     $this->setResponse($response);
     $this->annotations = $annotations;
 }
 public function __construct(KernelInterface $kernel, $controller, Request $request)
 {
     parent::__construct($kernel, $request);
     $this->setController($controller);
 }
 public function __construct(KernelInterface $kernel, Response $response, Request $request)
 {
     parent::__construct($kernel, $request);
     $this->response = $response;
     $this->request = $request;
 }
 public function __construct(KernelInterface $kernel, Request $request, Application $app = null)
 {
     parent::__construct($kernel, $request);
     $this->app = $app;
 }