From 563b02eeac8ba09f6f1c402436e379fac0eb514b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anke=20H=C3=A4slich?= Date: Sun, 17 Mar 2024 10:15:33 +0100 Subject: [PATCH] TASK: Adjust to movement of `ContentRepositoryId` to `SharedModel` namespace Relates: neos/neos-development-collection#4891 Relates: neos/neos-ui#3717 --- Classes/Service/NodeRedirectService.php | 2 +- Tests/Behavior/Features/Bootstrap/FeatureContext.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Service/NodeRedirectService.php b/Classes/Service/NodeRedirectService.php index fa4a8e4..724649b 100644 --- a/Classes/Service/NodeRedirectService.php +++ b/Classes/Service/NodeRedirectService.php @@ -22,7 +22,7 @@ use Psr\Log\LoggerInterface; use Neos\ContentRepository\Core\NodeType\NodeType; use Neos\Neos\FrontendRouting\NodeUriBuilder; -use Neos\ContentRepository\Core\Factory\ContentRepositoryId; +use Neos\ContentRepository\Core\SharedModel\ContentRepository\ContentRepositoryId; use GuzzleHttp\Psr7\ServerRequest; use Neos\Neos\FrontendRouting\SiteDetection\SiteDetectionResult; use Neos\Flow\Mvc\ActionRequest; diff --git a/Tests/Behavior/Features/Bootstrap/FeatureContext.php b/Tests/Behavior/Features/Bootstrap/FeatureContext.php index c28e3dc..4ce92c5 100644 --- a/Tests/Behavior/Features/Bootstrap/FeatureContext.php +++ b/Tests/Behavior/Features/Bootstrap/FeatureContext.php @@ -10,7 +10,7 @@ use Neos\ContentRepositoryRegistry\ContentRepositoryRegistry; use Neos\ContentRepository\Core\Factory\ContentRepositoryServiceFactoryInterface; use Neos\ContentRepository\Core\Factory\ContentRepositoryServiceInterface; -use Neos\ContentRepository\Core\Factory\ContentRepositoryId; +use Neos\ContentRepository\Core\SharedModel\ContentRepository\ContentRepositoryId; use Neos\ContentRepository\Core\ContentRepository; use Neos\ContentRepository\BehavioralTests\TestSuite\Behavior\GherkinTableNodeBasedContentDimensionSourceFactory; use Neos\ContentRepository\BehavioralTests\TestSuite\Behavior\GherkinPyStringNodeBasedNodeTypeManagerFactory;