Skip to content

Commit

Permalink
Fixed the nullable op risks scale comment issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslanbaidan committed Aug 22, 2024
1 parent ca4d06c commit 819f62a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/OperationalRiskScaleComment.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class OperationalRiskScaleComment extends OperationalRiskScaleCommentSuperClass

public function getComment(): string
{
return $this->comment;
return (string)$this->comment;
}

public function setComment(string $comment): self
Expand Down

0 comments on commit 819f62a

Please sign in to comment.