[FrameworkBundle] fixed typo

This commit is contained in:
Fabien Potencier 2011-05-01 17:38:14 +02:00
parent 0642b60079
commit f55237dad7

View File

@ -12,6 +12,7 @@
namespace Symfony\Bundle\FrameworkBundle\Routing; namespace Symfony\Bundle\FrameworkBundle\Routing;
use Symfony\Component\Routing\RouterInterface; use Symfony\Component\Routing\RouterInterface;
use Symfony\Component\Routing\RequestContext;
/** /**
* This Router is optimized to work with matcher and generator classes * This Router is optimized to work with matcher and generator classes
@ -51,9 +52,9 @@ class CachedRouter implements RouterInterface
/** /**
* Sets the request context. * Sets the request context.
* *
* @param array $context The context * @param RequestContext $context The context
*/ */
public function setContext(array $context = array()) public function setContext(RequestContext $context)
{ {
$this->matcher->setContext($context); $this->matcher->setContext($context);
$this->generator->setContext($context); $this->generator->setContext($context);