fix getter name

This commit is contained in:
yggverse 2024-06-24 03:56:31 +03:00
parent 9d035c8a26
commit a68ec839e4

View file

@ -32,7 +32,7 @@ class Quote
$this->_text = $text; $this->_text = $text;
} }
public function Text(): ?string public function getText(): ?string
{ {
return $this->_text; return $this->_text;
} }