1
0
mirror of synced 2025-02-21 09:23:17 +03:00

fix phpstan

This commit is contained in:
Opheugene 2024-09-13 13:06:04 +02:00
parent 5da993d598
commit b1fd78d2b5

View File

@ -109,7 +109,7 @@ class Item implements ModelInterface
/** /**
* @return string|null * @return string|null
*/ */
public function getTranscription() public function getTranscription(): ?string
{ {
return $this->transcription; return $this->transcription;
} }
@ -117,7 +117,7 @@ class Item implements ModelInterface
/** /**
* @param string $transcription * @param string $transcription
*/ */
public function setTranscription(string $transcription) public function setTranscription(string $transcription): void
{ {
$this->transcription = $transcription; $this->transcription = $transcription;
} }