fix: ensure failed exists() is boolean

This commit is contained in:
hackerESQ
2025-01-28 20:33:28 -06:00
parent 4ece09368e
commit 8c94fbf299
+1
View File
@@ -101,6 +101,7 @@ class FallbackInterfaceTest extends TestCase
$result = $fallbackInterface->exists('ZZZ');
$this->assertIsBool($result);
$this->assertFalse($result);
}
}