From 92bdb7a05788e5775408fee03779deef390495d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=A0pa=C4=8Dek?= Date: Tue, 7 Apr 2026 13:54:49 +0200 Subject: [PATCH] exit function is not internal, change isInternal method to return 'No' --- src/Reflection/Php/ExitFunctionReflection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Reflection/Php/ExitFunctionReflection.php b/src/Reflection/Php/ExitFunctionReflection.php index c4ab5219df2..731a848fe60 100644 --- a/src/Reflection/Php/ExitFunctionReflection.php +++ b/src/Reflection/Php/ExitFunctionReflection.php @@ -100,7 +100,7 @@ public function getDeprecatedDescription(): ?string public function isInternal(): TrinaryLogic { - return TrinaryLogic::createYes(); + return TrinaryLogic::createNo(); } public function getThrowType(): ?Type