interface RequestContextAwareInterface
Hierarchy
- interface \Symfony\Component\Routing\RequestContextAwareInterface
Expanded class hierarchy of RequestContextAwareInterface
All classes that implement RequestContextAwareInterface
5 files declare their use of RequestContextAwareInterface
- 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 - UrlHelper.php in vendor/
symfony/ http-foundation/ UrlHelper.php - UrlMatcherInterface.php in vendor/
symfony/ routing/ Matcher/ UrlMatcherInterface.php
File
-
vendor/
symfony/ routing/ RequestContextAwareInterface.php, line 14
Namespace
Symfony\Component\RoutingView source
interface RequestContextAwareInterface {
/**
* Sets the request context.
*/
public function setContext(RequestContext $context) : void;
/**
* Gets the request context.
*/
public function getContext() : RequestContext;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
RequestContextAwareInterface::getContext | public | function | Gets the request context. | 6 |
RequestContextAwareInterface::setContext | public | function | Sets the request context. | 6 |