Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. GeneratorDumperInterface.php

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\Dumper
View 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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal