Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TASK: 4305 Mark *Serialized* commands @internal #4757

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@
use Neos\ContentRepository\Core\SharedModel\Workspace\ContentStreamId;

/**
* CreateNodeAggregateWithNode
* Creates a new node aggregate with a new node.
*
* Creates a new node aggregate with a new node in the given `contentStreamId`
* with the given `nodeAggregateId` and `originDimensionSpacePoint`.
* The node will be appended as child node of the given `parentNodeId` which must cover the given
* `originDimensionSpacePoint`.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* The properties of {@see CreateNodeAggregateWithNode} are directly serialized; and then this command
* is called and triggers the actual processing.
*
* @api commands are the write-API of the ContentRepository
* @internal implementation detail, use {@see CreateNodeAggregateWithNode} instead.
*/
final class CreateNodeAggregateWithNodeAndSerializedProperties implements
CommandInterface,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
use Neos\ContentRepository\Core\SharedModel\Workspace\ContentStreamId;

/**
* Set property values for a given node (internal implementation).
* Set property values for a given node.
*
* The property values contain the serialized types already, and include type information.
*
* @api commands are the write-API of the ContentRepository
* @internal implementation detail, use {@see SetNodeProperties} instead.
*/
final class SetSerializedNodeProperties implements
CommandInterface,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
use Neos\ContentRepository\Core\SharedModel\Workspace\ContentStreamId;

/**
* Set property values for a given node (internal implementation).
* Set property values for a given node.
*
* The property values contain the serialized types already, and include type information.
*
* @api commands are the write-API of the ContentRepository
* @internal implementation detail, use {@see SetNodeReferences} instead.
*/
final class SetSerializedNodeReferences implements
CommandInterface,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* "Raw" / Serialized node reference as saved in the event log // in projections.
*
* @api used as part of commands/events
* @internal
*/
final class SerializedNodeReference implements \JsonSerializable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* A collection of SerializedNodeReference objects, to be used when creating reference relations.
*
* @implements \IteratorAggregate<SerializedNodeReference>
* @api used as part of commands/events
* @internal
*/
final readonly class SerializedNodeReferences implements \IteratorAggregate, \Countable, \JsonSerializable
{
Expand Down
Loading