Line data Source code
1 : /* This is a generated file, edit the .stub.php file instead.
2 : * Stub hash: 085539282c0504a2d2eb142260c656dfeb689508 */
3 :
4 194 : static zend_class_entry *register_class_Pango_GlyphInfo(void)
5 : {
6 : zend_class_entry ce, *class_entry;
7 :
8 194 : INIT_NS_CLASS_ENTRY(ce, "Pango", "GlyphInfo", NULL);
9 : #if (PHP_VERSION_ID >= 80400)
10 194 : class_entry = zend_register_internal_class_with_flags(&ce, NULL, 0);
11 : #else
12 : class_entry = zend_register_internal_class_ex(&ce, NULL);
13 : #endif
14 :
15 : zval property_glyph_default_value;
16 194 : ZVAL_UNDEF(&property_glyph_default_value);
17 194 : zend_string *property_glyph_name = zend_string_init("glyph", sizeof("glyph") - 1, 1);
18 194 : zend_declare_typed_property(class_entry, property_glyph_name, &property_glyph_default_value, ZEND_ACC_PUBLIC, NULL, (zend_type) ZEND_TYPE_INIT_MASK(MAY_BE_LONG));
19 : zend_string_release(property_glyph_name);
20 :
21 : zval property_geometry_default_value;
22 194 : ZVAL_UNDEF(&property_geometry_default_value);
23 194 : zend_string *property_geometry_name = zend_string_init("geometry", sizeof("geometry") - 1, 1);
24 194 : zend_declare_typed_property(class_entry, property_geometry_name, &property_geometry_default_value, ZEND_ACC_PUBLIC, NULL, (zend_type) ZEND_TYPE_INIT_MASK(MAY_BE_ARRAY));
25 : zend_string_release(property_geometry_name);
26 :
27 : zval property_attributes_default_value;
28 194 : ZVAL_UNDEF(&property_attributes_default_value);
29 194 : zend_string *property_attributes_name = zend_string_init("attributes", sizeof("attributes") - 1, 1);
30 194 : zend_declare_typed_property(class_entry, property_attributes_name, &property_attributes_default_value, ZEND_ACC_PUBLIC, NULL, (zend_type) ZEND_TYPE_INIT_MASK(MAY_BE_ARRAY));
31 : zend_string_release(property_attributes_name);
32 :
33 194 : return class_entry;
34 : }
|