You are here

public function KernelEvent::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Event/KernelEvent.php \Symfony\Component\HttpKernel\Event\KernelEvent::__construct()
4 calls to KernelEvent::__construct()
FilterControllerEvent::__construct in vendor/symfony/http-kernel/Event/FilterControllerEvent.php
FilterResponseEvent::__construct in vendor/symfony/http-kernel/Event/FilterResponseEvent.php
GetResponseForControllerResultEvent::__construct in vendor/symfony/http-kernel/Event/GetResponseForControllerResultEvent.php
GetResponseForExceptionEvent::__construct in vendor/symfony/http-kernel/Event/GetResponseForExceptionEvent.php
4 methods override KernelEvent::__construct()
FilterControllerEvent::__construct in vendor/symfony/http-kernel/Event/FilterControllerEvent.php
FilterResponseEvent::__construct in vendor/symfony/http-kernel/Event/FilterResponseEvent.php
GetResponseForControllerResultEvent::__construct in vendor/symfony/http-kernel/Event/GetResponseForControllerResultEvent.php
GetResponseForExceptionEvent::__construct in vendor/symfony/http-kernel/Event/GetResponseForExceptionEvent.php

File

vendor/symfony/http-kernel/Event/KernelEvent.php, line 47

Class

KernelEvent
Base class for events thrown in the HttpKernel component.

Namespace

Symfony\Component\HttpKernel\Event

Code

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