public function ContentAwareGenerator::supports in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony-cmf/routing/ContentAwareGenerator.php \Symfony\Cmf\Component\Routing\ContentAwareGenerator::supports()
We additionally support empty name and data in parameters and RouteAware content
Overrides ProviderBasedGenerator::supports
File
- vendor/
symfony-cmf/ routing/ ContentAwareGenerator.php, line 276
Class
- ContentAwareGenerator
- A generator that tries to generate routes from object, route names or content objects or names.
Namespace
Symfony\Cmf\Component\RoutingCode
public function supports($name) {
return !$name || parent::supports($name) || $name instanceof RouteReferrersReadInterface;
}