Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\Routing; Chris@0: Chris@0: interface RequestContextAwareInterface Chris@0: { Chris@0: /** Chris@0: * Sets the request context. Chris@0: */ Chris@0: public function setContext(RequestContext $context); Chris@0: Chris@0: /** Chris@0: * Gets the request context. Chris@0: * Chris@0: * @return RequestContext The context Chris@0: */ Chris@0: public function getContext(); Chris@0: }