class RouterMatchEvent in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony-cmf/routing/Event/RouterMatchEvent.php \Symfony\Cmf\Component\Routing\Event\RouterMatchEvent
Hierarchy
- class \Symfony\Component\EventDispatcher\Event
- class \Symfony\Cmf\Component\Routing\Event\RouterMatchEvent
Expanded class hierarchy of RouterMatchEvent
2 files declare their use of RouterMatchEvent
- DynamicRouter.php in vendor/
symfony-cmf/ routing/ DynamicRouter.php - DynamicRouterTest.php in vendor/
symfony-cmf/ routing/ Tests/ Routing/ DynamicRouterTest.php
File
- vendor/
symfony-cmf/ routing/ Event/ RouterMatchEvent.php, line 17
Namespace
Symfony\Cmf\Component\Routing\EventView source
class RouterMatchEvent extends Event {
/**
* @var Request
*/
protected $request;
/**
* @param Request $request
*/
public function __construct(Request $request = null) {
$this->request = $request;
}
/**
* @return Request | null
*/
public function getRequest() {
return $this->request;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Event:: |
private | property | ||
Event:: |
private | property | ||
Event:: |
private | property | ||
Event:: |
public | function | Returns the EventDispatcher that dispatches this Event. | |
Event:: |
public | function | Gets the event's name. | |
Event:: |
public | function | Returns whether further event listeners should be triggered. | |
Event:: |
public | function | Stores the EventDispatcher that dispatches this Event. | |
Event:: |
public | function | Sets the event's name property. | |
Event:: |
public | function | Stops the propagation of the event to further event listeners. | |
RouterMatchEvent:: |
protected | property | ||
RouterMatchEvent:: |
public | function | ||
RouterMatchEvent:: |
public | function |