interface MatcherDumperInterface
Same name in this branch
- 11.1.x core/lib/Drupal/Core/Routing/MatcherDumperInterface.php \Drupal\Core\Routing\MatcherDumperInterface
MatcherDumperInterface is the interface that all matcher dumper classes must implement.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- interface \Symfony\Component\Routing\Matcher\Dumper\MatcherDumperInterface
Expanded class hierarchy of MatcherDumperInterface
All classes that implement MatcherDumperInterface
2 files declare their use of MatcherDumperInterface
- MatcherDumperInterface.php in core/
lib/ Drupal/ Core/ Routing/ MatcherDumperInterface.php - Router.php in vendor/
symfony/ routing/ Router.php
File
-
vendor/
symfony/ routing/ Matcher/ Dumper/ MatcherDumperInterface.php, line 21
Namespace
Symfony\Component\Routing\Matcher\DumperView source
interface MatcherDumperInterface {
/**
* Dumps a set of routes to a string representation of executable code
* that can then be used to match a request against these routes.
*/
public function dump(array $options = []) : string;
/**
* Gets the routes to dump.
*/
public function getRoutes() : RouteCollection;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
MatcherDumperInterface::dump | public | function | Dumps a set of routes to a string representation of executable code that can then be used to match a request against these routes. |
4 |
MatcherDumperInterface::getRoutes | public | function | Gets the routes to dump. | 4 |