Skip to content

Commit

Permalink
Cosmetic tweaks to satisfy linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Sep 8, 2023
1 parent fa65892 commit ae66454
Show file tree
Hide file tree
Showing 15 changed files with 4 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ final class AddDimensionShineThrough implements
\JsonSerializable,
RebasableToOtherContentStreamsInterface
{

/**
* @param ContentStreamId $contentStreamId The id of the content stream to perform the operation in
* @param DimensionSpacePoint $source source dimension space point
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ final class MoveDimensionSpacePoint implements
CommandInterface,
RebasableToOtherContentStreamsInterface
{

/**
* @param ContentStreamId $contentStreamId The id of the content stream to perform the operation in
* @param DimensionSpacePoint $source source dimension space point
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ final class CreateNodeAggregateWithNodeAndSerializedProperties implements
RebasableToOtherContentStreamsInterface,
MatchableWithNodeIdToPublishOrDiscardInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream in which the create operation is to be performed
* @param NodeAggregateId $nodeAggregateId The unique identifier of the node aggregate to create
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ final class DisableNodeAggregate implements
RebasableToOtherContentStreamsInterface,
MatchableWithNodeIdToPublishOrDiscardInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream in which the disable operation is to be performed
* @param NodeAggregateId $nodeAggregateId The identifier of the node aggregate to disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ final class EnableNodeAggregate implements
RebasableToOtherContentStreamsInterface,
MatchableWithNodeIdToPublishOrDiscardInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream in which the enable operation is to be performed
* @param NodeAggregateId $nodeAggregateId The identifier of the node aggregate to enable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ final class SetSerializedNodeProperties implements
RebasableToOtherContentStreamsInterface,
MatchableWithNodeIdToPublishOrDiscardInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream in which the set properties operation is to be performed
* @param NodeAggregateId $nodeAggregateId The id of the node aggregate to set the properties for
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*/
final class SetNodeReferences implements CommandInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream in which the create operation is to be performed
* @param NodeAggregateId $sourceNodeAggregateId The identifier of the node aggregate to set references
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ final class RemoveNodeAggregate implements
RebasableToOtherContentStreamsInterface,
MatchableWithNodeIdToPublishOrDiscardInterface
{

/**
* @param ContentStreamId $contentStreamId
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ final class ChangeNodeAggregateName implements
RebasableToOtherContentStreamsInterface,
MatchableWithNodeIdToPublishOrDiscardInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream in which the operation is to be performed
* @param NodeAggregateId $nodeAggregateId The identifier of the node aggregate to rename
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ final class ChangeNodeAggregateType implements
RebasableToOtherContentStreamsInterface,
MatchableWithNodeIdToPublishOrDiscardInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream in which the operation is to be performed
* @param NodeAggregateId $nodeAggregateId The unique identifier of the node aggregate to change
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ final class CreateRootNodeAggregateWithNode implements
\JsonSerializable,
RebasableToOtherContentStreamsInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream in which the root node should be created in
* @param NodeAggregateId $nodeAggregateId The id of the root node aggregate to create
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ final class UpdateRootNodeAggregateDimensions implements
\JsonSerializable,
RebasableToOtherContentStreamsInterface
{

/**
* @param ContentStreamId $contentStreamId The content stream which the dimensions should be updated in
* @param NodeAggregateId $nodeAggregateId The id of the node aggregate that should be updated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ private function __construct(
* @param WorkspaceName $workspaceName Name of the affected workspace
* @param NodeIdsToPublishOrDiscard $nodesToPublish Ids of the nodes to publish or discard
*/
public static function create(WorkspaceName $workspaceName, NodeIdsToPublishOrDiscard $nodesToPublish): self {
public static function create(WorkspaceName $workspaceName, NodeIdsToPublishOrDiscard $nodesToPublish): self
{
return new self(
$workspaceName,
$nodesToPublish,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@
*/
final class PublishWorkspace implements CommandInterface
{

/**
* @param WorkspaceName $workspaceName Name of the workspace to publish
*/
private function __construct(
public readonly WorkspaceName $workspaceName,
)
{
) {
}

/**
Expand Down
3 changes: 1 addition & 2 deletions Classes/Feature/WorkspaceRebase/Command/RebaseWorkspace.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ final class RebaseWorkspace implements CommandInterface
private function __construct(
public readonly WorkspaceName $workspaceName,
public readonly ContentStreamId $rebasedContentStreamId
)
{
) {
}

public static function create(WorkspaceName $workspaceName): self
Expand Down

0 comments on commit ae66454

Please sign in to comment.