Documentation improvements.

8.0.x
Larry Garfield 2012-12-26 15:16:29 -06:00
parent dcac21ebe8
commit b0a1269f6c
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,9 @@
<?php <?php
/**
* @file
* Contains Drupal\Core\Routing\RouteProvider.
*/
namespace Drupal\Core\Routing; namespace Drupal\Core\Routing;
@ -11,7 +15,7 @@ use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use \Drupal\Core\Database\Connection; use \Drupal\Core\Database\Connection;
/** /**
* * A Route Provider front-end for all Drupal-stored routes.
*/ */
class RouteProvider implements RouteProviderInterface { class RouteProvider implements RouteProviderInterface {

View File

@ -8,9 +8,7 @@ use Symfony\Component\Routing\RequestContext;
use Symfony\Cmf\Component\Routing\NestedMatcher\UrlMatcher as BaseUrlMatcher; use Symfony\Cmf\Component\Routing\NestedMatcher\UrlMatcher as BaseUrlMatcher;
/** /**
* Description of UrlMatcher * Drupal-specific URL Matcher; handles the Drupal "system path" mapping.
*
* @author crell
*/ */
class UrlMatcher extends BaseUrlMatcher { class UrlMatcher extends BaseUrlMatcher {