class GeneratorDumper
GeneratorDumper is the base class for all built-in generator dumpers.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Symfony\Component\Routing\Generator\Dumper\GeneratorDumper implements \Symfony\Component\Routing\Generator\Dumper\GeneratorDumperInterface
Expanded class hierarchy of GeneratorDumper
File
-
vendor/
symfony/ routing/ Generator/ Dumper/ GeneratorDumper.php, line 21
Namespace
Symfony\Component\Routing\Generator\DumperView source
abstract class GeneratorDumper implements GeneratorDumperInterface {
public function __construct(RouteCollection $routes) {
}
public function getRoutes() : RouteCollection {
return $this->routes;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
GeneratorDumper::getRoutes | public | function | Gets the routes to dump. | Overrides GeneratorDumperInterface::getRoutes | |
GeneratorDumper::__construct | public | function | |||
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 |