<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Routing; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; use Symfony\Component\Routing\Matcher\UrlMatcherInterface; /** * RouterInterface is the interface that all Router classes must implement. * * This interface is the concatenation of UrlMatcherInterface and UrlGeneratorInterface. * * @author Fabien Potencier <fabien@symfony.com> */ interface RouterInterface extends UrlMatcherInterface, UrlGeneratorInterface { /** * Gets the RouteCollection instance associated with this Router. * * @return RouteCollection A RouteCollection instance */ public function getRouteCollection(); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Annotation | Folder | 0755 |
|
|
DependencyInjection | Folder | 0755 |
|
|
Exception | Folder | 0755 |
|
|
Generator | Folder | 0755 |
|
|
Loader | Folder | 0755 |
|
|
Matcher | Folder | 0755 |
|
|
Tests | Folder | 0755 |
|
|
.gitignore | File | 34 B | 0644 |
|
CHANGELOG.md | File | 9.19 KB | 0644 |
|
CompiledRoute.php | File | 4.28 KB | 0644 |
|
LICENSE | File | 1.04 KB | 0644 |
|
README.md | File | 505 B | 0644 |
|
RequestContext.php | File | 7.08 KB | 0644 |
|
RequestContextAwareInterface.php | File | 558 B | 0644 |
|
Route.php | File | 13.55 KB | 0644 |
|
RouteCollection.php | File | 7.14 KB | 0644 |
|
RouteCollectionBuilder.php | File | 9.7 KB | 0644 |
|
RouteCompiler.php | File | 13.73 KB | 0644 |
|
RouteCompilerInterface.php | File | 779 B | 0644 |
|
Router.php | File | 12.42 KB | 0644 |
|
RouterInterface.php | File | 901 B | 0644 |
|
composer.json | File | 1.71 KB | 0644 |
|
phpunit.xml.dist | File | 834 B | 0644 |
|