diff --git a/core/modules/translation_entity/lib/Drupal/translation_entity/Access/EntityTranslationManageAccessCheck.php b/core/modules/translation_entity/lib/Drupal/translation_entity/Access/EntityTranslationManageAccessCheck.php index 74d73e0..3fa66a6 100644 --- a/core/modules/translation_entity/lib/Drupal/translation_entity/Access/EntityTranslationManageAccessCheck.php +++ b/core/modules/translation_entity/lib/Drupal/translation_entity/Access/EntityTranslationManageAccessCheck.php @@ -12,7 +12,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface; use Drupal\Core\Entity\EntityManager; use Drupal\Core\Access\AccessCheckInterface; -use Drupal\Core\ControllerInterface; +use Drupal\Core\Controller\ControllerInterface; /** * Access check for entity translation CURD operation. diff --git a/core/modules/translation_entity/lib/Drupal/translation_entity/Access/EntityTranslationOverviewAccess.php b/core/modules/translation_entity/lib/Drupal/translation_entity/Access/EntityTranslationOverviewAccess.php index eb2eee7..9a07bbf 100644 --- a/core/modules/translation_entity/lib/Drupal/translation_entity/Access/EntityTranslationOverviewAccess.php +++ b/core/modules/translation_entity/lib/Drupal/translation_entity/Access/EntityTranslationOverviewAccess.php @@ -12,7 +12,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface; use Drupal\Core\Entity\EntityManager; use Drupal\Core\Access\AccessCheckInterface; -use Drupal\Core\ControllerInterface; +use Drupal\Core\Controller\ControllerInterface; /** * Access check for entity translation overview. diff --git a/core/modules/translation_entity/lib/Drupal/translation_entity/Controller/EntityTranslationController.php b/core/modules/translation_entity/lib/Drupal/translation_entity/Controller/EntityTranslationController.php index d666358..c24c7c3 100644 --- a/core/modules/translation_entity/lib/Drupal/translation_entity/Controller/EntityTranslationController.php +++ b/core/modules/translation_entity/lib/Drupal/translation_entity/Controller/EntityTranslationController.php @@ -8,7 +8,7 @@ namespace Drupal\translation_entity\Controller; use Symfony\Component\DependencyInjection\ContainerInterface; -use Drupal\Core\ControllerInterface; +use Drupal\Core\Controller\ControllerInterface; use Drupal\Core\Entity\EntityInterface; use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\Core\Entity\EntityManager; diff --git a/core/modules/translation_entity/translation_entity.services.yml b/core/modules/translation_entity/translation_entity.services.yml index 6116916..f67577f 100644 --- a/core/modules/translation_entity/translation_entity.services.yml +++ b/core/modules/translation_entity/translation_entity.services.yml @@ -13,7 +13,7 @@ services: tags: - { name: access_check } translation_entity.manage_access: - class: Drupal\translation_entity\Access\EntityTranslationManageAccess + class: Drupal\translation_entity\Access\EntityTranslationManageAccessCheck arguments: ['@plugin.manager.entity'] tags: - { name: access_check }