Skip to content

Commit 0bf46a7

Browse files
committed
Change to static storage
1 parent b0ed795 commit 0bf46a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_inheritance.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ static inheritance_status zend_is_intersection_subtype_of_type(
675675
return early_exit_status == INHERITANCE_ERROR ? INHERITANCE_SUCCESS : INHERITANCE_ERROR;
676676
}
677677

678-
ZEND_API inheritance_status zend_perform_covariant_type_check(
678+
static inheritance_status zend_perform_covariant_type_check(
679679
zend_class_entry *fe_scope, const zend_type *fe_type_ptr,
680680
zend_class_entry *proto_scope, const zend_type *proto_type_ptr);
681681

@@ -707,7 +707,7 @@ static inheritance_status zend_is_type_subtype_of_generic_type(
707707
}
708708
}
709709

710-
ZEND_API inheritance_status zend_perform_covariant_type_check(
710+
static inheritance_status zend_perform_covariant_type_check(
711711
zend_class_entry *fe_scope, const zend_type *fe_type_ptr,
712712
zend_class_entry *proto_scope, const zend_type *proto_type_ptr)
713713
{

0 commit comments

Comments
 (0)