zeev Mon Aug 23 09:14:27 2004 EDT
Modified files: (Branch: PHP_5_0)
/ZendEngine2 zend_reflection_api.c
Log:
Fix names
http://cvs.php.net/diff.php/ZendEngine2/zend_reflection_api.c?r1=1.111.2.3&r2=1.111.2.4&ty=u
Index: ZendEngine2/zend_reflection_api.c
diff -u ZendEngine2/zend_reflection_api.c:1.111.2.3
ZendEngine2/zend_reflection_api.c:1.111.2.4
--- ZendEngine2/zend_reflection_api.c:1.111.2.3 Mon Aug 16 04:49:48 2004
+++ ZendEngine2/zend_reflection_api.c Mon Aug 23 09:14:27 2004
@@ -19,7 +19,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_reflection_api.c,v 1.111.2.3 2004/08/16 08:49:48 helly Exp $ */
+/* $Id: zend_reflection_api.c,v 1.111.2.4 2004/08/23 13:14:27 zeev Exp $ */
#include "zend.h"
#include "zend_API.h"
#include "zend_exceptions.h"
@@ -1356,7 +1356,7 @@
}
/* }}} */
-/* {{{ proto public ReflectionParameter[] Reflection_Function::getParameters()
+/* {{{ proto public ReflectionParameter[] ReflectionFunction::getParameters()
Returns an array of parameter objects for this function */
ZEND_METHOD(reflection_function, getParameters)
{
@@ -2565,7 +2565,7 @@
/* no break */
default:
zend_throw_exception_ex(reflection_exception_ptr, 0
TSRMLS_CC,
- "Parameter one must either be a string
or a Reflection_Class object");
+ "Parameter one must either be a string
or a ReflectionClass object");
return;
}
@@ -2611,7 +2611,7 @@
/* no break */
default:
zend_throw_exception_ex(reflection_exception_ptr, 0
TSRMLS_CC,
- "Parameter one must either be a string
or a Reflection_Class object");
+ "Parameter one must either be a string
or a ReflectionClass object");
return;
}
@@ -2638,7 +2638,7 @@
}
/* }}} */
-/* {{{ proto public ReflectionExtension|NULL Reflection_Class::getExtension()
+/* {{{ proto public ReflectionExtension|NULL ReflectionClass::getExtension()
Returns NULL or the extension the class belongs to */
ZEND_METHOD(reflection_class, getExtension)
{
@@ -3179,7 +3179,7 @@
/* }}} */
/* {{{ proto public ReflectionClass[] ReflectionExtension::getClasses()
- Returns an array containing Reflection_Class objects for all classes of
this extension */
+ Returns an array containing ReflectionClass objects for all classes of this
extension */
ZEND_METHOD(reflection_extension, getClasses)
{
reflection_object *intern;
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|