[Routing] fix phpdoc

This commit is contained in:
Tobias Schultze 2012-06-14 23:15:09 +02:00
parent 37550d23c6
commit 921be34ee7
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
/**
* UrlMatcherInterface is the interface that all URL matcher classes must implement.
* RequestMatcherInterface is the interface that all request matcher classes must implement.
*
* @author Fabien Potencier <fabien@symfony.com>
*/

View File

@ -25,7 +25,7 @@ use Symfony\Component\Routing\Exception\MethodNotAllowedException;
interface UrlMatcherInterface extends RequestContextAwareInterface
{
/**
* Tries to match a URL with a set of routes.
* Tries to match a URL path with a set of routes.
*
* If the matcher can not find information, it must throw one of the exceptions documented
* below.