Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Richter committed Oct 14, 2024
1 parent 95ed9fc commit df2a79b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Domain/Model/PublishedItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ protected static function getSubitemPlateId(PublishedSubitem $subitem): string
*
* @return string $publicComment
*/
public function getComment(): string
public function getPublicComment(): string
{
return $this->publicComment;
}
Expand All @@ -1042,7 +1042,7 @@ public function getComment(): string
* @param string $publicComment
* @return void
*/
public function setComment(string $publicComment): void
public function setPublicComment(string $publicComment): void
{
$this->publicComment = $publicComment;
}
Expand Down

0 comments on commit df2a79b

Please sign in to comment.