From 8c94fbf299a6e8e182b71f1ce65b55d9ec1382b7 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Tue, 28 Jan 2025 20:33:28 -0600 Subject: [PATCH] fix: ensure failed exists() is boolean --- tests/FallbackInterfaceTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/FallbackInterfaceTest.php b/tests/FallbackInterfaceTest.php index 484fae0..99282d2 100644 --- a/tests/FallbackInterfaceTest.php +++ b/tests/FallbackInterfaceTest.php @@ -101,6 +101,7 @@ class FallbackInterfaceTest extends TestCase $result = $fallbackInterface->exists('ZZZ'); + $this->assertIsBool($result); $this->assertFalse($result); } }