From 467349fec9d5780a8637472e66e4c6a29280476a Mon Sep 17 00:00:00 2001 From: Bojan Bogdanovic Date: Mon, 9 Sep 2024 07:48:22 +0200 Subject: [PATCH] Correct typo --- modules/next/next.services.yml | 2 +- modules/next/src/Plugin/Next/Revalidator/CacheTag.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/next/next.services.yml b/modules/next/next.services.yml index 2269cee4..49c52565 100644 --- a/modules/next/next.services.yml +++ b/modules/next/next.services.yml @@ -85,7 +85,7 @@ services: next.cache_tag_revalidator_task_store: class: Drupal\next\CacheTagRevalidatorTaskStore arguments: [ '@database' ] - next.path_revalidor_helper: + next.path_revalidator_helper: class: Drupal\next\PathRevalidatorHelper arguments: - '@entity_type.manager' diff --git a/modules/next/src/Plugin/Next/Revalidator/CacheTag.php b/modules/next/src/Plugin/Next/Revalidator/CacheTag.php index 43166f37..f71fd65e 100644 --- a/modules/next/src/Plugin/Next/Revalidator/CacheTag.php +++ b/modules/next/src/Plugin/Next/Revalidator/CacheTag.php @@ -124,7 +124,7 @@ public static function create(ContainerInterface $container, array $configuratio $container->get('logger.channel.next'), $container->get('config.factory')->get('next.settings'), $container->get('next.cache_tag_node_mapper'), - $container->get('next.path_revalidor_helper'), + $container->get('next.path_revalidator_helper'), $container->get('queue')->get('cache_tag_revalidator', TRUE), $container->get('next.cache_tag_revalidator_task_store') );