From df2a79bcd9b22ede5f5d92528913ba2b2219dde5 Mon Sep 17 00:00:00 2001 From: Matthias Richter Date: Mon, 14 Oct 2024 16:10:48 +0200 Subject: [PATCH] Fix --- Classes/Domain/Model/PublishedItem.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Domain/Model/PublishedItem.php b/Classes/Domain/Model/PublishedItem.php index 5a4ab71..5165d13 100755 --- a/Classes/Domain/Model/PublishedItem.php +++ b/Classes/Domain/Model/PublishedItem.php @@ -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; } @@ -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; }