diff options
Diffstat (limited to 'ext/libxml/libxml.c')
-rw-r--r-- | ext/libxml/libxml.c | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c index d77f6aa2fd..98402e2e49 100644 --- a/ext/libxml/libxml.c +++ b/ext/libxml/libxml.c @@ -892,8 +892,7 @@ static PHP_MINFO_FUNCTION(libxml) } /* }}} */ -/* {{{ proto void libxml_set_streams_context(resource streams_context) - Set the streams context for the next libxml document load or write */ +/* {{{ Set the streams context for the next libxml document load or write */ PHP_FUNCTION(libxml_set_streams_context) { zval *arg; @@ -910,8 +909,7 @@ PHP_FUNCTION(libxml_set_streams_context) } /* }}} */ -/* {{{ proto bool libxml_use_internal_errors([boolean use_errors]) - Disable libxml errors and allow user to fetch error information as needed */ +/* {{{ Disable libxml errors and allow user to fetch error information as needed */ PHP_FUNCTION(libxml_use_internal_errors) { xmlStructuredErrorFunc current_handler; @@ -951,8 +949,7 @@ PHP_FUNCTION(libxml_use_internal_errors) } /* }}} */ -/* {{{ proto object libxml_get_last_error() - Retrieve last error from libxml */ +/* {{{ Retrieve last error from libxml */ PHP_FUNCTION(libxml_get_last_error) { xmlErrorPtr error; @@ -983,8 +980,7 @@ PHP_FUNCTION(libxml_get_last_error) } /* }}} */ -/* {{{ proto object libxml_get_errors() - Retrieve array of errors */ +/* {{{ Retrieve array of errors */ PHP_FUNCTION(libxml_get_errors) { @@ -1025,8 +1021,7 @@ PHP_FUNCTION(libxml_get_errors) } /* }}} */ -/* {{{ proto void libxml_clear_errors() - Clear last error from libxml */ +/* {{{ Clear last error from libxml */ PHP_FUNCTION(libxml_clear_errors) { ZEND_PARSE_PARAMETERS_NONE(); @@ -1046,8 +1041,7 @@ PHP_LIBXML_API zend_bool php_libxml_disable_entity_loader(zend_bool disable) /* return old; } /* }}} */ -/* {{{ proto bool libxml_disable_entity_loader([boolean disable]) - Disable/Enable ability to load external entities */ +/* {{{ Disable/Enable ability to load external entities */ PHP_FUNCTION(libxml_disable_entity_loader) { zend_bool disable = 1; @@ -1061,8 +1055,7 @@ PHP_FUNCTION(libxml_disable_entity_loader) } /* }}} */ -/* {{{ proto void libxml_set_external_entity_loader(callback resolver_function) - Changes the default external entity loader */ +/* {{{ Changes the default external entity loader */ PHP_FUNCTION(libxml_set_external_entity_loader) { zend_fcall_info fci; |