From a68ec839e470ed9531a8ec6bc66210a727a3249f Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 24 Jun 2024 03:56:31 +0300 Subject: [PATCH] fix getter name --- src/Entity/Quote.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/Quote.php b/src/Entity/Quote.php index 4adef6a..4356a7c 100644 --- a/src/Entity/Quote.php +++ b/src/Entity/Quote.php @@ -32,7 +32,7 @@ class Quote $this->_text = $text; } - public function Text(): ?string + public function getText(): ?string { return $this->_text; }