@@ -4388,7 +4388,7 @@ static zend_always_inline bool is_persistent_class(zend_class_entry *ce) {
4388
4388
&& ce -> info .internal .module -> type == MODULE_PERSISTENT ;
4389
4389
}
4390
4390
4391
- ZEND_API zend_property_info * zend_declare_typed_property (zend_class_entry * ce , zend_string * name , zval * property , int access_type , zend_string * doc_comment , zend_type type ) /* {{{ */
4391
+ ZEND_API zend_property_info * zend_declare_typed_property (zend_class_entry * ce , zend_string * name , zval * property , zend_prop_flags access_type , zend_string * doc_comment , zend_type type ) /* {{{ */
4392
4392
{
4393
4393
zend_property_info * property_info , * property_info_ptr ;
4394
4394
@@ -4634,21 +4634,21 @@ ZEND_API zend_result zend_try_assign_typed_ref_zval_ex(zend_reference *ref, zval
4634
4634
}
4635
4635
/* }}} */
4636
4636
4637
- ZEND_API void zend_declare_property_ex (zend_class_entry * ce , zend_string * name , zval * property , int access_type , zend_string * doc_comment ) /* {{{ */
4637
+ ZEND_API void zend_declare_property_ex (zend_class_entry * ce , zend_string * name , zval * property , zend_prop_flags access_type , zend_string * doc_comment ) /* {{{ */
4638
4638
{
4639
4639
zend_declare_typed_property (ce , name , property , access_type , doc_comment , (zend_type ) ZEND_TYPE_INIT_NONE (0 ));
4640
4640
}
4641
4641
/* }}} */
4642
4642
4643
- ZEND_API void zend_declare_property (zend_class_entry * ce , const char * name , size_t name_length , zval * property , int access_type ) /* {{{ */
4643
+ ZEND_API void zend_declare_property (zend_class_entry * ce , const char * name , size_t name_length , zval * property , zend_prop_flags access_type ) /* {{{ */
4644
4644
{
4645
4645
zend_string * key = zend_string_init (name , name_length , is_persistent_class (ce ));
4646
4646
zend_declare_property_ex (ce , key , property , access_type , NULL );
4647
4647
zend_string_release (key );
4648
4648
}
4649
4649
/* }}} */
4650
4650
4651
- ZEND_API void zend_declare_property_null (zend_class_entry * ce , const char * name , size_t name_length , int access_type ) /* {{{ */
4651
+ ZEND_API void zend_declare_property_null (zend_class_entry * ce , const char * name , size_t name_length , zend_prop_flags access_type ) /* {{{ */
4652
4652
{
4653
4653
zval property ;
4654
4654
@@ -4657,7 +4657,7 @@ ZEND_API void zend_declare_property_null(zend_class_entry *ce, const char *name,
4657
4657
}
4658
4658
/* }}} */
4659
4659
4660
- ZEND_API void zend_declare_property_bool (zend_class_entry * ce , const char * name , size_t name_length , zend_long value , int access_type ) /* {{{ */
4660
+ ZEND_API void zend_declare_property_bool (zend_class_entry * ce , const char * name , size_t name_length , zend_long value , zend_prop_flags access_type ) /* {{{ */
4661
4661
{
4662
4662
zval property ;
4663
4663
@@ -4666,7 +4666,7 @@ ZEND_API void zend_declare_property_bool(zend_class_entry *ce, const char *name,
4666
4666
}
4667
4667
/* }}} */
4668
4668
4669
- ZEND_API void zend_declare_property_long (zend_class_entry * ce , const char * name , size_t name_length , zend_long value , int access_type ) /* {{{ */
4669
+ ZEND_API void zend_declare_property_long (zend_class_entry * ce , const char * name , size_t name_length , zend_long value , zend_prop_flags access_type ) /* {{{ */
4670
4670
{
4671
4671
zval property ;
4672
4672
@@ -4675,7 +4675,7 @@ ZEND_API void zend_declare_property_long(zend_class_entry *ce, const char *name,
4675
4675
}
4676
4676
/* }}} */
4677
4677
4678
- ZEND_API void zend_declare_property_double (zend_class_entry * ce , const char * name , size_t name_length , double value , int access_type ) /* {{{ */
4678
+ ZEND_API void zend_declare_property_double (zend_class_entry * ce , const char * name , size_t name_length , double value , zend_prop_flags access_type ) /* {{{ */
4679
4679
{
4680
4680
zval property ;
4681
4681
@@ -4684,7 +4684,7 @@ ZEND_API void zend_declare_property_double(zend_class_entry *ce, const char *nam
4684
4684
}
4685
4685
/* }}} */
4686
4686
4687
- ZEND_API void zend_declare_property_string (zend_class_entry * ce , const char * name , size_t name_length , const char * value , int access_type ) /* {{{ */
4687
+ ZEND_API void zend_declare_property_string (zend_class_entry * ce , const char * name , size_t name_length , const char * value , zend_prop_flags access_type ) /* {{{ */
4688
4688
{
4689
4689
zval property ;
4690
4690
@@ -4693,7 +4693,7 @@ ZEND_API void zend_declare_property_string(zend_class_entry *ce, const char *nam
4693
4693
}
4694
4694
/* }}} */
4695
4695
4696
- ZEND_API void zend_declare_property_stringl (zend_class_entry * ce , const char * name , size_t name_length , const char * value , size_t value_len , int access_type ) /* {{{ */
4696
+ ZEND_API void zend_declare_property_stringl (zend_class_entry * ce , const char * name , size_t name_length , const char * value , size_t value_len , zend_prop_flags access_type ) /* {{{ */
4697
4697
{
4698
4698
zval property ;
4699
4699
0 commit comments