You are here

interface RequestContextAwareInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/RequestContextAwareInterface.php \Symfony\Component\Routing\RequestContextAwareInterface

Hierarchy

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

... See full list

File

vendor/symfony/routing/RequestContextAwareInterface.php, line 14

Namespace

Symfony\Component\Routing
View 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

Namesort descending Modifiers Type Description Overrides
RequestContextAwareInterface::getContext public function Gets the request context. 9
RequestContextAwareInterface::setContext public function Sets the request context. 9