From b34c974cea94f415cfe5151fe6b527a4e12cb8b2 Mon Sep 17 00:00:00 2001 From: bwaters Date: Wed, 5 Apr 2023 22:35:20 -0500 Subject: [PATCH] update type hint to make compatible with interface --- src/Props/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Props/Container.php b/src/Props/Container.php index 9e48548..7327477 100644 --- a/src/Props/Container.php +++ b/src/Props/Container.php @@ -102,7 +102,7 @@ public function __isset($name) /** * {@inheritdoc} */ - public function has($name) + public function has($name): bool { return $this->__isset($name); }