Updating some docblocks

8.0.x
Katherine Bailey 2012-08-30 21:46:07 -07:00 committed by effulgentsia
parent f368409fcc
commit c17d7dce9d
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\RouteCollection;
/**
* A PartialMatcher works like a UrlMatcher, but will return multiple candidate routes.
* A FinalMatcher returns only one route from a collection of candidate routes.
*/
interface FinalMatcherInterface {

View File

@ -60,7 +60,7 @@ class MatcherDumper implements MatcherDumperInterface {
}
/**
* Dumps a set of routes to a PHP class.
* Dumps a set of routes to the router table in the database.
*
* Available options:
*

View File

@ -39,7 +39,7 @@ interface NestedMatcherInterface extends RequestMatcherInterface {
/**
* Sets the final matcher for the matching plan.
*
* @param UrlMatcherInterface $final
* @param FinalMatcherInterface $final
* The matcher that will be called last to ensure only a single route is
* found.
*