diff --git a/src/Plugin/GraphQL/DataProducer/Routing/RouteEntity.php b/src/Plugin/GraphQL/DataProducer/Routing/RouteEntity.php index 334c8a285..9d4ff5d22 100644 --- a/src/Plugin/GraphQL/DataProducer/Routing/RouteEntity.php +++ b/src/Plugin/GraphQL/DataProducer/Routing/RouteEntity.php @@ -108,7 +108,7 @@ public function __construct( public function resolve($url, ?string $language, FieldContext $context): ?Deferred { if ($url instanceof Url && $url->isRouted()) { [$route_type, $type] = explode('.', $url->getRouteName()); - // Check that this route is actually an entity route and make sure that + // Check that this route is actually an entity route and make sure that // entity type is not empty. if ($route_type !== 'entity' || empty($type)) { return NULL;