From 192256e77ed4c1484af9dbbee344f5b0f361a6c1 Mon Sep 17 00:00:00 2001 From: Bastian Waidelich Date: Wed, 17 Apr 2024 17:33:09 +0200 Subject: [PATCH] Remove ProjectionCatchUpTriggerInterface and implementations ...for now --- .../ProjectionCatchUpTriggerInterface.php | 18 ----------- .../DefaultCatchUpTrigger.php | 30 ------------------- ...DefaultProjectionCatchUpTriggerFactory.php | 23 -------------- ...ojectionCatchUpTriggerFactoryInterface.php | 12 -------- 4 files changed, 83 deletions(-) delete mode 100644 Neos.ContentRepository.Core/Classes/Projection/ProjectionCatchUpTriggerInterface.php delete mode 100644 Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/DefaultCatchUpTrigger.php delete mode 100644 Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/DefaultProjectionCatchUpTriggerFactory.php delete mode 100644 Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/ProjectionCatchUpTriggerFactoryInterface.php diff --git a/Neos.ContentRepository.Core/Classes/Projection/ProjectionCatchUpTriggerInterface.php b/Neos.ContentRepository.Core/Classes/Projection/ProjectionCatchUpTriggerInterface.php deleted file mode 100644 index d4b7331533e..00000000000 --- a/Neos.ContentRepository.Core/Classes/Projection/ProjectionCatchUpTriggerInterface.php +++ /dev/null @@ -1,18 +0,0 @@ -contentRepositoryRegistry->get($this->contentRepositoryId); - $contentRepository->catchUpProjections(); - } -} diff --git a/Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/DefaultProjectionCatchUpTriggerFactory.php b/Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/DefaultProjectionCatchUpTriggerFactory.php deleted file mode 100644 index 7d7948ecce6..00000000000 --- a/Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/DefaultProjectionCatchUpTriggerFactory.php +++ /dev/null @@ -1,23 +0,0 @@ - $options */ - public function build(ContentRepositoryId $contentRepositoryId, array $options): DefaultCatchUpTrigger - { - return new DefaultCatchUpTrigger($this->contentRepositoryRegistry, $contentRepositoryId); - } -} diff --git a/Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/ProjectionCatchUpTriggerFactoryInterface.php b/Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/ProjectionCatchUpTriggerFactoryInterface.php deleted file mode 100644 index 5f73b1859ad..00000000000 --- a/Neos.ContentRepositoryRegistry/Classes/Factory/ProjectionCatchUpTrigger/ProjectionCatchUpTriggerFactoryInterface.php +++ /dev/null @@ -1,12 +0,0 @@ - $options */ - public function build(ContentRepositoryId $contentRepositoryId, array $options): ProjectionCatchUpTriggerInterface; -}