You are here

public function PostResponseEvent::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Event/PostResponseEvent.php \Symfony\Component\HttpKernel\Event\PostResponseEvent::__construct()

File

vendor/symfony/http-kernel/Event/PostResponseEvent.php, line 37

Class

PostResponseEvent
Allows to execute logic after a response was sent.

Namespace

Symfony\Component\HttpKernel\Event

Code

public function __construct(HttpKernelInterface $kernel, Request $request, Response $response) {
  $this->kernel = $kernel;
  $this->request = $request;
  $this->response = $response;
}