diff --git a/Neos.ContentGraph.DoctrineDbalAdapter/src/Domain/Repository/NodeFactory.php b/Neos.ContentGraph.DoctrineDbalAdapter/src/Domain/Repository/NodeFactory.php index 0645bac2c19..723d3439360 100644 --- a/Neos.ContentGraph.DoctrineDbalAdapter/src/Domain/Repository/NodeFactory.php +++ b/Neos.ContentGraph.DoctrineDbalAdapter/src/Domain/Repository/NodeFactory.php @@ -235,7 +235,6 @@ public function mapNodeRowsToNodeAggregate( $nodesByCoveredDimensionSpacePoints, OriginByCoverage::fromArray($occupationByCovering), $dimensionSpacePointsBySubtreeTags, - $contentStreamId, ); } @@ -338,7 +337,6 @@ public function mapNodeRowsToNodeAggregates( $occupationByCoveringByNodeAggregate[$rawNodeAggregateId] ), $dimensionSpacePointsBySubtreeTagsByNodeAggregate[$rawNodeAggregateId], - $contentStreamId, ); } } diff --git a/Neos.ContentGraph.PostgreSQLAdapter/src/Domain/Repository/NodeFactory.php b/Neos.ContentGraph.PostgreSQLAdapter/src/Domain/Repository/NodeFactory.php index 52a0b7b080b..5f8a4f442a8 100644 --- a/Neos.ContentGraph.PostgreSQLAdapter/src/Domain/Repository/NodeFactory.php +++ b/Neos.ContentGraph.PostgreSQLAdapter/src/Domain/Repository/NodeFactory.php @@ -258,7 +258,6 @@ public function mapNodeRowsToNodeAggregate( OriginByCoverage::fromArray($occupationByCovered), // TODO implement (see \Neos\ContentGraph\DoctrineDbalAdapter\Domain\Repository\NodeFactory::mapNodeRowsToNodeAggregate()) DimensionSpacePointsBySubtreeTags::create(), - $contentStreamId, ); } @@ -357,7 +356,6 @@ public function mapNodeRowsToNodeAggregates(array $nodeRows, VisibilityConstrain OriginByCoverage::fromArray($occupationByCovered[$key]), // TODO implement (see \Neos\ContentGraph\DoctrineDbalAdapter\Domain\Repository\NodeFactory::mapNodeRowsToNodeAggregates()) DimensionSpacePointsBySubtreeTags::create(), - $contentStreamId, ); } } diff --git a/Neos.ContentRepository.Core/Classes/Projection/ContentGraph/NodeAggregate.php b/Neos.ContentRepository.Core/Classes/Projection/ContentGraph/NodeAggregate.php index 73f078fac2c..c949bac0f57 100644 --- a/Neos.ContentRepository.Core/Classes/Projection/ContentGraph/NodeAggregate.php +++ b/Neos.ContentRepository.Core/Classes/Projection/ContentGraph/NodeAggregate.php @@ -53,12 +53,6 @@ */ final readonly class NodeAggregate { - /** - * This was intermediate part of the node aggregate. Please use {@see $workspaceName} instead. - * @deprecated will be removed before the final 9.0 release - */ - public ContentStreamId $contentStreamId; - /** * @param ContentRepositoryId $contentRepositoryId The content-repository this node aggregate belongs to * @param WorkspaceName $workspaceName The workspace of this node aggregate @@ -88,9 +82,7 @@ private function __construct( private array $nodesByCoveredDimensionSpacePoint, private OriginByCoverage $occupationByCovered, private DimensionSpacePointsBySubtreeTags $dimensionSpacePointsBySubtreeTags, - ContentStreamId $contentStreamId, ) { - $this->contentStreamId = $contentStreamId; } /** @@ -112,7 +104,6 @@ public static function create( array $nodesByCoveredDimensionSpacePoint, OriginByCoverage $occupationByCovered, DimensionSpacePointsBySubtreeTags $dimensionSpacePointsBySubtreeTags, - ContentStreamId $contentStreamId, ): self { return new self( $contentRepositoryId, @@ -128,7 +119,6 @@ public static function create( $nodesByCoveredDimensionSpacePoint, $occupationByCovered, $dimensionSpacePointsBySubtreeTags, - $contentStreamId, ); }