Skip to content

Commit 4038389

Browse files
braces
1 parent ee4a2b7 commit 4038389

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/reflection/php_reflection.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7715,7 +7715,7 @@ ZEND_METHOD(ReflectionAttribute, getCurrent)
77157715
return_value
77167716
);
77177717
return;
7718-
case ZEND_ATTRIBUTE_TARGET_PARAMETER:
7718+
case ZEND_ATTRIBUTE_TARGET_PARAMETER: {
77197719
zend_function *target_function = attr->target_data.target_parameter.target_function;
77207720
reflection_parameter_factory(
77217721
_copy_function(target_function),
@@ -7726,6 +7726,7 @@ ZEND_METHOD(ReflectionAttribute, getCurrent)
77267726
return_value
77277727
);
77287728
return;
7729+
}
77297730
case ZEND_ATTRIBUTE_TARGET_CONST:
77307731
object_init_ex(return_value, reflection_constant_ptr);
77317732
reflection_object *intern = Z_REFLECTION_P(return_value);

0 commit comments

Comments
 (0)