public function DynamicRouter::supports

Delegate to our generator

Overrides VersatileGeneratorInterface::supports

File

drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/DynamicRouter.php, line 142

Class

DynamicRouter
A flexible router accepting matcher and generator through injection and using the RouteEnhancer concept to generate additional data on the routes.

Namespace

Symfony\Cmf\Component\Routing

Code

public function supports($name) {
  if ($this->generator instanceof VersatileGeneratorInterface) {
    return $this->generator
      ->supports($name);
  }
  return is_string($name);
}