interface RequestContextAwareInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/RequestContextAwareInterface.php \Symfony\Component\Routing\RequestContextAwareInterface
Hierarchy
- interface \Symfony\Component\Routing\RequestContextAwareInterface
Expanded class hierarchy of RequestContextAwareInterface
All classes that implement RequestContextAwareInterface
6 files declare their use of RequestContextAwareInterface
- ChainRouter.php in vendor/
symfony-cmf/ routing/ ChainRouter.php - DynamicRouter.php in vendor/
symfony-cmf/ routing/ DynamicRouter.php - LocaleListener.php in vendor/
symfony/ http-kernel/ EventListener/ LocaleListener.php - RouterListener.php in vendor/
symfony/ http-kernel/ EventListener/ RouterListener.php - UrlGeneratorInterface.php in vendor/
symfony/ routing/ Generator/ UrlGeneratorInterface.php
File
- vendor/
symfony/ routing/ RequestContextAwareInterface.php, line 14
Namespace
Symfony\Component\RoutingView source
interface RequestContextAwareInterface {
/**
* Sets the request context.
*
* @param RequestContext $context The context
*/
public function setContext(RequestContext $context);
/**
* Gets the request context.
*
* @return RequestContext The context
*/
public function getContext();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RequestContextAwareInterface:: |
public | function | Gets the request context. | 9 |
RequestContextAwareInterface:: |
public | function | Sets the request context. | 9 |