diff --git a/Neos.ContentRepository.Core/Classes/Feature/NodeMove/Command/MoveNodeAggregate.php b/Neos.ContentRepository.Core/Classes/Feature/NodeMove/Command/MoveNodeAggregate.php index c7c60eebba..e40b021669 100644 --- a/Neos.ContentRepository.Core/Classes/Feature/NodeMove/Command/MoveNodeAggregate.php +++ b/Neos.ContentRepository.Core/Classes/Feature/NodeMove/Command/MoveNodeAggregate.php @@ -34,6 +34,7 @@ * * Why can you specify **both** newPrecedingSiblingNodeAggregateId * and newSucceedingSiblingNodeAggregateId? + * * - it can happen that in one subgraph, only one of these match. * - See the PHPDoc of the attributes (a few lines down) for the exact behavior. * diff --git a/Neos.ContentRepository.Core/Classes/Feature/NodeRemoval/Command/RemoveNodeAggregate.php b/Neos.ContentRepository.Core/Classes/Feature/NodeRemoval/Command/RemoveNodeAggregate.php index ad4948d6a4..806e24f191 100644 --- a/Neos.ContentRepository.Core/Classes/Feature/NodeRemoval/Command/RemoveNodeAggregate.php +++ b/Neos.ContentRepository.Core/Classes/Feature/NodeRemoval/Command/RemoveNodeAggregate.php @@ -22,6 +22,8 @@ use Neos\ContentRepository\Core\SharedModel\Workspace\WorkspaceName; /** + * The "Remove node aggregate" command + * * @api commands are the write-API of the ContentRepository */ final readonly class RemoveNodeAggregate implements diff --git a/Neos.ContentRepository.Core/Classes/Feature/NodeTypeChange/Command/ChangeNodeAggregateType.php b/Neos.ContentRepository.Core/Classes/Feature/NodeTypeChange/Command/ChangeNodeAggregateType.php index 736802a3e6..f6f5499408 100644 --- a/Neos.ContentRepository.Core/Classes/Feature/NodeTypeChange/Command/ChangeNodeAggregateType.php +++ b/Neos.ContentRepository.Core/Classes/Feature/NodeTypeChange/Command/ChangeNodeAggregateType.php @@ -23,6 +23,8 @@ use Neos\ContentRepository\Core\SharedModel\Workspace\WorkspaceName; /** + * The "Change node aggregate type" command + * * @api commands are the write-API of the ContentRepository */ final readonly class ChangeNodeAggregateType implements diff --git a/Neos.ContentRepository.Core/Classes/Feature/RootNodeCreation/Command/UpdateRootNodeAggregateDimensions.php b/Neos.ContentRepository.Core/Classes/Feature/RootNodeCreation/Command/UpdateRootNodeAggregateDimensions.php index fa4c9a4215..5432b58896 100644 --- a/Neos.ContentRepository.Core/Classes/Feature/RootNodeCreation/Command/UpdateRootNodeAggregateDimensions.php +++ b/Neos.ContentRepository.Core/Classes/Feature/RootNodeCreation/Command/UpdateRootNodeAggregateDimensions.php @@ -21,8 +21,9 @@ use Neos\ContentRepository\Core\SharedModel\Workspace\WorkspaceName; /** - * change visibility of the root node aggregate. A root node aggregate must be visible in all + * Change visibility of the root node aggregate. A root node aggregate must be visible in all * configured dimensions. + * * Needed when configured dimensions change. * * @api commands are the write-API of the ContentRepository diff --git a/Neos.ContentRepository.Core/Classes/Feature/SubtreeTagging/Command/UntagSubtree.php b/Neos.ContentRepository.Core/Classes/Feature/SubtreeTagging/Command/UntagSubtree.php index d0d49a47d5..5325142188 100644 --- a/Neos.ContentRepository.Core/Classes/Feature/SubtreeTagging/Command/UntagSubtree.php +++ b/Neos.ContentRepository.Core/Classes/Feature/SubtreeTagging/Command/UntagSubtree.php @@ -24,6 +24,7 @@ /** * Remove a {@see SubtreeTag} from a node aggregate and its descendants. + * * Note: This will remove the tag from the node aggregate and all inherited instances. If the same tag is added for another Subtree below this aggregate, this will still be set! * * @api commands are the write-API of the ContentRepository