Skip to content

Commit

Permalink
- Fix prototypes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andi Gutmans committed Apr 27, 2004
1 parent c527cc8 commit e780c42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Zend/zend_reflection_api.c
Expand Up @@ -3158,7 +3158,7 @@ static int add_extension_class(zend_class_entry **pce, int num_args, va_list arg
}
/* }}} */

/* {{{ proto public array Reflection_Extension::getClasses()
/* {{{ proto public ReflectionClass[] Reflection_Extension::getClasses()
Returns an array containing Reflection_Class objects for all classes of this extension */
ZEND_METHOD(reflection_extension, getClasses)
{
Expand All @@ -3173,7 +3173,7 @@ ZEND_METHOD(reflection_extension, getClasses)
}
/* }}} */

/* {{{ proto public array Reflection_Extension::getClasses()
/* {{{ proto public array Reflection_Extension::getClassNames()
Returns an array containing all names of all classes of this extension */
ZEND_METHOD(reflection_extension, getClassNames)
{
Expand Down
4 changes: 2 additions & 2 deletions ext/reflection/php_reflection.c
Expand Up @@ -3158,7 +3158,7 @@ static int add_extension_class(zend_class_entry **pce, int num_args, va_list arg
}
/* }}} */

/* {{{ proto public array Reflection_Extension::getClasses()
/* {{{ proto public ReflectionClass[] Reflection_Extension::getClasses()
Returns an array containing Reflection_Class objects for all classes of this extension */
ZEND_METHOD(reflection_extension, getClasses)
{
Expand All @@ -3173,7 +3173,7 @@ ZEND_METHOD(reflection_extension, getClasses)
}
/* }}} */

/* {{{ proto public array Reflection_Extension::getClasses()
/* {{{ proto public array Reflection_Extension::getClassNames()
Returns an array containing all names of all classes of this extension */
ZEND_METHOD(reflection_extension, getClassNames)
{
Expand Down

0 comments on commit e780c42

Please sign in to comment.