From 8cfa363f02c0ae9848a3a0788dccb871e2ae277b Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 7 Jul 2024 20:48:40 +0300 Subject: [PATCH] implement getValue method --- src/Abstract/Entity/Entry.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Abstract/Entity/Entry.php b/src/Abstract/Entity/Entry.php index 6bf7a223..1a8ad192 100644 --- a/src/Abstract/Entity/Entry.php +++ b/src/Abstract/Entity/Entry.php @@ -74,4 +74,9 @@ abstract class Entry ) ); } + + public function getValue(): ?string + { + return $this->gtk->get_text(); + } } \ No newline at end of file