]> granicus.if.org Git - php/commitdiff
Fix Reflection_Class to ReflectionClass in docu/messages
authorMarcus Boerger <helly@php.net>
Mon, 27 Sep 2004 09:11:40 +0000 (09:11 +0000)
committerMarcus Boerger <helly@php.net>
Mon, 27 Sep 2004 09:11:40 +0000 (09:11 +0000)
Zend/zend_reflection_api.c
ext/reflection/php_reflection.c

index d86ed75492652aabf8e09adda338d01957f4461b..0e72bac6faf0b35c44f84496fc80237ec6c8289f 100644 (file)
@@ -2685,7 +2685,7 @@ ZEND_METHOD(reflection_class, getParentClass)
 }
 /* }}} */
 
-/* {{{ proto public bool ReflectionClass::isSubclassOf(string|reflection_class class)
+/* {{{ proto public bool ReflectionClass::isSubclassOf(string|ReflectionClass class)
    Returns whether this class is a subclass of another class */
 ZEND_METHOD(reflection_class, isSubclassOf)
 {
@@ -2722,7 +2722,7 @@ ZEND_METHOD(reflection_class, isSubclassOf)
                        /* 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;
        }
 
@@ -2731,7 +2731,7 @@ ZEND_METHOD(reflection_class, isSubclassOf)
 }
 /* }}} */
 
-/* {{{ proto public bool ReflectionClass::implementsInterface(string|reflection_class interface_name)
+/* {{{ proto public bool ReflectionClass::implementsInterface(string|ReflectionClass interface_name)
    Returns whether this class is a subclass of another class */
 ZEND_METHOD(reflection_class, implementsInterface)
 {
@@ -2768,7 +2768,7 @@ ZEND_METHOD(reflection_class, implementsInterface)
                        /* 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;
        }
 
@@ -2795,7 +2795,7 @@ ZEND_METHOD(reflection_class, isIterateable)
 }
 /* }}} */
 
-/* {{{ 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)
 {
@@ -3347,7 +3347,7 @@ static int add_extension_class(zend_class_entry **pce, int num_args, va_list arg
 /* }}} */
 
 /* {{{ 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;
index d86ed75492652aabf8e09adda338d01957f4461b..0e72bac6faf0b35c44f84496fc80237ec6c8289f 100644 (file)
@@ -2685,7 +2685,7 @@ ZEND_METHOD(reflection_class, getParentClass)
 }
 /* }}} */
 
-/* {{{ proto public bool ReflectionClass::isSubclassOf(string|reflection_class class)
+/* {{{ proto public bool ReflectionClass::isSubclassOf(string|ReflectionClass class)
    Returns whether this class is a subclass of another class */
 ZEND_METHOD(reflection_class, isSubclassOf)
 {
@@ -2722,7 +2722,7 @@ ZEND_METHOD(reflection_class, isSubclassOf)
                        /* 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;
        }
 
@@ -2731,7 +2731,7 @@ ZEND_METHOD(reflection_class, isSubclassOf)
 }
 /* }}} */
 
-/* {{{ proto public bool ReflectionClass::implementsInterface(string|reflection_class interface_name)
+/* {{{ proto public bool ReflectionClass::implementsInterface(string|ReflectionClass interface_name)
    Returns whether this class is a subclass of another class */
 ZEND_METHOD(reflection_class, implementsInterface)
 {
@@ -2768,7 +2768,7 @@ ZEND_METHOD(reflection_class, implementsInterface)
                        /* 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;
        }
 
@@ -2795,7 +2795,7 @@ ZEND_METHOD(reflection_class, isIterateable)
 }
 /* }}} */
 
-/* {{{ 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)
 {
@@ -3347,7 +3347,7 @@ static int add_extension_class(zend_class_entry **pce, int num_args, va_list arg
 /* }}} */
 
 /* {{{ 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;