From 083161452431ed2b320f7532e48a26d78c2974a9 Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 8 Jul 2024 01:12:51 +0300 Subject: [PATCH] rename boolean getter --- src/Abstract/Entity/Entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Abstract/Entity/Entry.php b/src/Abstract/Entity/Entry.php index 153c5e5d..22d99609 100644 --- a/src/Abstract/Entity/Entry.php +++ b/src/Abstract/Entity/Entry.php @@ -130,7 +130,7 @@ abstract class Entry return $this->gtk->get_text(); } - public function getVisible(): ?bool + public function isVisible(): ?bool { return $this->gtk->get_visible(); }