Skip to content

Commit

Permalink
fix phpstan
Browse files Browse the repository at this point in the history
  • Loading branch information
opheugene committed Sep 13, 2024
1 parent 5da993d commit b1fd78d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Bot/Model/Entity/Message/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@ public function setCaption(string $caption)
/**
* @return string|null
*/
public function getTranscription()
public function getTranscription(): ?string
{
return $this->transcription;
}

/**
* @param string $transcription
*/
public function setTranscription(string $transcription)
public function setTranscription(string $transcription): void
{
$this->transcription = $transcription;
}
Expand Down

0 comments on commit b1fd78d

Please sign in to comment.