1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

ReflectionFiber::getCallable(): remove stray backslash (#21439)

This commit is contained in:
Daniel Scherzer
2026-03-14 10:11:33 -07:00
committed by GitHub
parent c197fada93
commit 91134db95d

View File

@@ -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();
}