Skip to content

Commit

Permalink
TASK: Use constant instead of string
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Müller <[email protected]>
  • Loading branch information
dlubitz and kitsunet authored Oct 24, 2024
1 parent c8f13d3 commit 39b8d1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Neos.Neos/Classes/PendingChangesProjection/Change.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function updateToDatabase(Connection $databaseConnection, string $tableNa
'contentStreamId' => $this->contentStreamId->value,
'nodeAggregateId' => $this->nodeAggregateId->value,
'originDimensionSpacePoint' => $this->originDimensionSpacePoint?->toJson(),
'originDimensionSpacePointHash' => $this->originDimensionSpacePoint?->hash ?: 'AGGREGATE',
'originDimensionSpacePointHash' => $this->originDimensionSpacePoint?->hash ?: self::AGGREGATE_DIMENSIONSPACEPOINT_HASH_PLACEHOLDER,
]
);
} catch (DbalException $e) {
Expand Down

0 comments on commit 39b8d1c

Please sign in to comment.