Skip to content
Snippets Groups Projects
Commit ef577f39 authored by Larry Garfield's avatar Larry Garfield
Browse files

Various minor documentation cleanups.

parent a16eecd3
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -2,7 +2,7 @@
/**
* @file
* Contains of Drupal\Core\Routing\UrlGenerator.
* Contains Drupal\Core\Routing\UrlGenerator.
*/
namespace Drupal\Core\Routing;
......
<?php
/**
* @file
* Contains Drupal\Core\Routing\UrlMatcher.
*/
namespace Drupal\Core\Routing;
use Symfony\Component\HttpFoundation\Request;
......@@ -12,6 +17,12 @@
*/
class UrlMatcher extends BaseUrlMatcher {
/**
* Constructs a new UrlMatcher.
*
* The parent class has a constructor we need to skip, so just override it
* with a no-op.
*/
public function __construct() {}
public function finalMatch(RouteCollection $collection, Request $request) {
......
......@@ -2,7 +2,7 @@
/**
* @file
* Contains of Drupal\system\Tests\Routing\MockAliasManager.
* Contains Drupal\system\Tests\Routing\MockAliasManager.
*/
namespace Drupal\system\Tests\Routing;
......
......@@ -2,7 +2,7 @@
/**
* @file
* Contains of Drupal\system\Tests\Routing\MockRouteProvider.
* Contains Drupal\system\Tests\Routing\MockRouteProvider.
*/
namespace Drupal\system\Tests\Routing;
......@@ -14,7 +14,6 @@
/**
* Easily configurable mock route provider.
*
*/
class MockRouteProvider implements RouteProviderInterface {
......
......@@ -2,7 +2,7 @@
/**
* @file
* Definition of Drupal\system\Tests\Routing\RouteProviderTest.
* Contains Drupal\system\Tests\Routing\RouteProviderTest.
*/
namespace Drupal\system\Tests\Routing;
......
......@@ -2,7 +2,7 @@
/**
* @file
* Contains of Drupal\system\Tests\Routing\UrlGeneratorTest.
* Contains Drupal\system\Tests\Routing\UrlGeneratorTest.
*/
namespace Drupal\system\Tests\Routing;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment