From: Rob Richards Date: Mon, 7 Jul 2003 19:45:24 +0000 (+0000) Subject: changed to studlyCaps naming convention X-Git-Tag: BEFORE_ARG_INFO~339 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b2507b910cd64a1094bf5490a5fb0a4ed611760;p=php changed to studlyCaps naming convention --- diff --git a/ext/xsl/xsltprocessor.c b/ext/xsl/xsltprocessor.c index ad1ad7f4ca..507db3e8b7 100644 --- a/ext/xsl/xsltprocessor.c +++ b/ext/xsl/xsltprocessor.c @@ -35,13 +35,13 @@ */ zend_function_entry php_xsl_xsltprocessor_class_functions[] = { - PHP_FALIAS(import_stylesheet, xsl_xsltprocessor_import_stylesheet, NULL) - PHP_FALIAS(transform_to_doc, xsl_xsltprocessor_transform_to_doc, NULL) - PHP_FALIAS(transform_to_uri, xsl_xsltprocessor_transform_to_uri, NULL) - PHP_FALIAS(transform_to_xml, xsl_xsltprocessor_transform_to_xml, NULL) - PHP_FALIAS(set_parameter, xsl_xsltprocessor_set_parameter, NULL) - PHP_FALIAS(get_parameter, xsl_xsltprocessor_get_parameter, NULL) - PHP_FALIAS(remove_parameter, xsl_xsltprocessor_remove_parameter, NULL) + PHP_FALIAS(importStylesheet, xsl_xsltprocessor_import_stylesheet, NULL) + PHP_FALIAS(transformToDoc, xsl_xsltprocessor_transform_to_doc, NULL) + PHP_FALIAS(transformToUri, xsl_xsltprocessor_transform_to_uri, NULL) + PHP_FALIAS(transformToXml, xsl_xsltprocessor_transform_to_xml, NULL) + PHP_FALIAS(setParameter, xsl_xsltprocessor_set_parameter, NULL) + PHP_FALIAS(getParameter, xsl_xsltprocessor_get_parameter, NULL) + PHP_FALIAS(removeParameter, xsl_xsltprocessor_remove_parameter, NULL) {NULL, NULL, NULL} };