Skip to content

Commit 91134db

Browse files
ReflectionFiber::getCallable(): remove stray backslash (php#21439)
1 parent c197fad commit 91134db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/reflection/php_reflection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7890,7 +7890,7 @@ ZEND_METHOD(ReflectionFiber, getCallable)
78907890
ZEND_PARSE_PARAMETERS_NONE();
78917891

78927892
if (fiber == NULL || fiber->context.status == ZEND_FIBER_STATUS_DEAD) {
7893-
zend_throw_error(NULL, "Cannot fetch the callable from a fiber that has terminated"); \
7893+
zend_throw_error(NULL, "Cannot fetch the callable from a fiber that has terminated");
78947894
RETURN_THROWS();
78957895
}
78967896

0 commit comments

Comments
 (0)