Firewall::onKernelFinishRequest()

onKernelFinishRequest(FinishRequestEvent $event) Parameters FinishRequestEvent $event

Firewall::getSubscribedEvents()

static array getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. The array keys are event names and the value can be: The method name to call (priority defaults to 0) An array composed of the method name to call and the priority An array of arrays composed of the method names to call and respective priorities, or 0 if unset For instance: array('eventName' => 'methodName') array('eventName' => array('methodName', $priority)) a

Firewall

class Firewall implements EventSubscriberInterface Firewall uses a FirewallMap to register security listeners for the given request. It allows for different security strategies within the same application (a Basic authentication for the /api, and a web based authentication for everything else for instance). Methods __construct(FirewallMapInterface $map, EventDispatcherInterface $dispatcher) Constructor. onKernelRequest(GetResponseEvent $event) Handles security. onKernelFinishRe

FirePHPHandler

class FirePHPHandler extends FirePHPHandler FirePHPHandler. Methods onKernelResponse(FilterResponseEvent $event) Adds the headers to the response once it's created. Details onKernelResponse(FilterResponseEvent $event) Adds the headers to the response once it's created. Parameters FilterResponseEvent $event

FinishRequestEvent

class FinishRequestEvent extends KernelEvent Triggered whenever a request is fully processed. Methods bool isPropagationStopped() Returns whether further event listeners should be triggered. from Event stopPropagation() Stops the propagation of the event to further event listeners. from Event setDispatcher(EventDispatcherInterface $dispatcher) deprecated Stores the EventDispatcher that dispatches this Event from Event EventDispatcherInterface getDispatcher() deprecated Return

Finder::sortByType()

Finder|SplFileInfo[] sortByType() Sorts files and directories by type (directories before files), then by name. This can be slow as all the matching files and directories must be retrieved for comparison. Return Value Finder|SplFileInfo[] The current Finder instance See also SortableIterator

Finder::sortByName()

Finder|SplFileInfo[] sortByName() Sorts files and directories by name. This can be slow as all the matching files and directories must be retrieved for comparison. Return Value Finder|SplFileInfo[] The current Finder instance See also SortableIterator

Finder::sortByModifiedTime()

Finder|SplFileInfo[] sortByModifiedTime() Sorts files and directories by the last modified time. This is the last time the actual contents of the file were last modified. This can be slow as all the matching files and directories must be retrieved for comparison. Return Value Finder|SplFileInfo[] The current Finder instance See also SortableIterator

Finder::sortByChangedTime()

Finder|SplFileInfo[] sortByChangedTime() Sorts files and directories by the last inode changed time. This is the time that the inode information was last modified (permissions, owner, group or other metadata). On Windows, since inode is not available, changed time is actually the file creation time. This can be slow as all the matching files and directories must be retrieved for comparison. Return Value Finder|SplFileInfo[] The current Finder instance See also SortableIterato

Finder::sortByAccessedTime()

Finder|SplFileInfo[] sortByAccessedTime() Sorts files and directories by the last accessed time. This is the time that the file was last accessed, read or written to. This can be slow as all the matching files and directories must be retrieved for comparison. Return Value Finder|SplFileInfo[] The current Finder instance See also SortableIterator