Documentation improvements.
parent
dcac21ebe8
commit
b0a1269f6c
|
@ -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 {
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue