From a6f5ec23e5c6ac56a22d5e530ae6bc3cfd521e3a Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Fri, 13 Mar 2026 18:46:33 -0700 Subject: [PATCH] ReflectionFiber::getCallable(): remove stray backslash --- ext/reflection/php_reflection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 5a349b28905f..40a759043f0a 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -7890,7 +7890,7 @@ ZEND_METHOD(ReflectionFiber, getCallable) ZEND_PARSE_PARAMETERS_NONE(); if (fiber == NULL || fiber->context.status == ZEND_FIBER_STATUS_DEAD) { - zend_throw_error(NULL, "Cannot fetch the callable from a fiber that has terminated"); \ + zend_throw_error(NULL, "Cannot fetch the callable from a fiber that has terminated"); RETURN_THROWS(); }