function MatcherDumperInterface::dump
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 methods override MatcherDumperInterface::dump()
- CompiledUrlMatcherDumper::dump in vendor/
symfony/ routing/ Matcher/ Dumper/ CompiledUrlMatcherDumper.php - Dumps a set of routes to a string representation of executable code that can then be used to match a request against these routes.
- MatcherDumper::dump in core/
lib/ Drupal/ Core/ Routing/ MatcherDumper.php - Dumps a set of routes to the router table in the database.
- MatcherDumper::dump in core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ MatcherDumper.php - Dumps a set of routes to a string representation of executable code that can then be used to match a request against these routes.
- NullMatcherDumper::dump in core/
lib/ Drupal/ Core/ Routing/ NullMatcherDumper.php - Dumps a set of routes to the router table in the database.
File
-
vendor/
symfony/ routing/ Matcher/ Dumper/ MatcherDumperInterface.php, line 27
Class
- MatcherDumperInterface
- MatcherDumperInterface is the interface that all matcher dumper classes must implement.
Namespace
Symfony\Component\Routing\Matcher\DumperCode
public function dump(array $options = []) : string;