interface GeneratorDumperInterface in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php \Symfony\Component\Routing\Generator\Dumper\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.
*
* @param array $options An array of options
*
* @return string Executable code
*/
public function dump(array $options = array());
/**
* Gets the routes to dump.
*
* @return RouteCollection A RouteCollection instance
*/
public function getRoutes();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GeneratorDumperInterface:: |
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:: |
public | function | Gets the routes to dump. | 1 |