You are here

class FinishRequestEvent in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Event/FinishRequestEvent.php \Symfony\Component\HttpKernel\Event\FinishRequestEvent

Triggered whenever a request is fully processed.

@author Benjamin Eberlei <kontakt@beberlei.de>

Hierarchy

Expanded class hierarchy of FinishRequestEvent

5 files declare their use of FinishRequestEvent
HttpKernel.php in vendor/symfony/http-kernel/HttpKernel.php
LocaleListener.php in vendor/symfony/http-kernel/EventListener/LocaleListener.php
RouterListener.php in vendor/symfony/http-kernel/EventListener/RouterListener.php
TranslatorListener.php in vendor/symfony/http-kernel/EventListener/TranslatorListener.php
TranslatorListenerTest.php in vendor/symfony/http-kernel/Tests/EventListener/TranslatorListenerTest.php

File

vendor/symfony/http-kernel/Event/FinishRequestEvent.php, line 19

Namespace

Symfony\Component\HttpKernel\Event
View source
class FinishRequestEvent extends KernelEvent {

}

Members

Namesort descending Modifiers Type Description Overrides
Event::$dispatcher private property
Event::$name private property
Event::$propagationStopped private property
Event::getDispatcher Deprecated public function Returns the EventDispatcher that dispatches this Event.
Event::getName Deprecated public function Gets the event's name.
Event::isPropagationStopped public function Returns whether further event listeners should be triggered.
Event::setDispatcher Deprecated public function Stores the EventDispatcher that dispatches this Event.
Event::setName Deprecated public function Sets the event's name property.
Event::stopPropagation public function Stops the propagation of the event to further event listeners.
KernelEvent::$kernel private property The kernel in which this event was thrown.
KernelEvent::$request private property The request the kernel is currently processing.
KernelEvent::$requestType private property The request type the kernel is currently processing. One of HttpKernelInterface::MASTER_REQUEST and HttpKernelInterface::SUB_REQUEST.
KernelEvent::getKernel public function Returns the kernel in which this event was thrown.
KernelEvent::getRequest public function Returns the request the kernel is currently processing.
KernelEvent::getRequestType public function Returns the request type the kernel is currently processing.
KernelEvent::isMasterRequest public function Checks if this is a master request.
KernelEvent::__construct public function 4