From b1fd78d2b5d4f85441fd11feec050d150754130f Mon Sep 17 00:00:00 2001 From: Opheugene Date: Fri, 13 Sep 2024 13:06:04 +0200 Subject: [PATCH] fix phpstan --- src/Bot/Model/Entity/Message/Item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bot/Model/Entity/Message/Item.php b/src/Bot/Model/Entity/Message/Item.php index 0c04b46..8bb14bb 100644 --- a/src/Bot/Model/Entity/Message/Item.php +++ b/src/Bot/Model/Entity/Message/Item.php @@ -109,7 +109,7 @@ class Item implements ModelInterface /** * @return string|null */ - public function getTranscription() + public function getTranscription(): ?string { return $this->transcription; } @@ -117,7 +117,7 @@ class Item implements ModelInterface /** * @param string $transcription */ - public function setTranscription(string $transcription) + public function setTranscription(string $transcription): void { $this->transcription = $transcription; }