From ca0ca7dfb7b081b54f153e5f635290dd00bc315c Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 1 Jul 2024 14:11:53 +0300 Subject: [PATCH] fix item getter name --- src/Entity/Listing.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/Listing.php b/src/Entity/Listing.php index d7b27b0..e77d169 100755 --- a/src/Entity/Listing.php +++ b/src/Entity/Listing.php @@ -32,7 +32,7 @@ class Listing implements \Yggverse\Gemtext\Interface\Entity $this->_item = $item; } - public function Item(): ?string + public function getItem(): ?string { return $this->_item; }