Exemple #1
0
 /**
  * Handles a Request to convert it to a Response.
  *
  * When $catch is true, the implementation must catch all exceptions
  * and do its best to convert them to a Response instance.
  *
  * @param Request $req   A Request instance
  * @param int     $type  The type of the request
  *                       (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST)
  * @param bool    $catch Whether to catch exceptions or not
  *
  * @return Response A Response instance
  *
  * @throws \Exception When an Exception occurs during processing
  *
  * @SuppressWarnings(PHPMD)
  */
 public function handle(Request $req, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
 {
     return $this->router->toResponse($this->route->response($this->dp));
 }