mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix XmlParser classname in stubs
This commit is contained in:
parent
4173f2b3ab
commit
686d6c3dd4
3 changed files with 4 additions and 4 deletions
|
@ -254,7 +254,7 @@ static void php_xml_free_wrapper(void *ptr)
|
|||
PHP_MINIT_FUNCTION(xml)
|
||||
{
|
||||
zend_class_entry ce;
|
||||
INIT_CLASS_ENTRY(ce, "XmlParser", class_XMLParser_methods);
|
||||
INIT_CLASS_ENTRY(ce, "XmlParser", class_XmlParser_methods);
|
||||
xml_parser_ce = zend_register_internal_class(&ce);
|
||||
xml_parser_ce->create_object = xml_parser_create_object;
|
||||
xml_parser_ce->ce_flags |= ZEND_ACC_FINAL | ZEND_ACC_NO_DYNAMIC_PROPERTIES;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue