interface GeneratorDumperInterface
GeneratorDumperInterface is the interface that all generator dumper classes must implement.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- interface \Symfony\Component\Routing\Generator\Dumper\GeneratorDumperInterface
Expanded class hierarchy of GeneratorDumperInterface
All classes that implement GeneratorDumperInterface
1 file declares its use of GeneratorDumperInterface
- Router.php in vendor/
symfony/ routing/ Router.php
File
-
vendor/
symfony/ routing/ Generator/ Dumper/ GeneratorDumperInterface.php, line 21
Namespace
Symfony\Component\Routing\Generator\DumperView source
interface GeneratorDumperInterface {
/**
* Dumps a set of routes to a string representation of executable code
* that can then be used to generate a URL of such a route.
*/
public function dump(array $options = []) : string;
/**
* Gets the routes to dump.
*/
public function getRoutes() : RouteCollection;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
GeneratorDumperInterface::dump | public | function | Dumps a set of routes to a string representation of executable code that can then be used to generate a URL of such a route. |
1 |
GeneratorDumperInterface::getRoutes | public | function | Gets the routes to dump. | 1 |