Skip to content

Commit f733173

Browse files
committed
Fix typo while resolving conflicts
1 parent a7df6ce commit f733173

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
@@ -2413,7 +2413,7 @@ ZEND_METHOD(reflection_parameter, getDefaultValue)
24132413
return;
24142414
}
24152415
precv = _get_recv_op((zend_op_array*)param->fptr, param->offset);
2416-
if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2_type == IS_UNUSED) {
2416+
if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2.op_type == IS_UNUSED) {
24172417
zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Internal error");
24182418
return;
24192419
}

0 commit comments

Comments
 (0)