diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2015-06-23 17:46:07 -0400 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2015-06-23 17:46:20 -0400 |
commit | 28d7bb97a11c8eb55d568cb095517861c2e33d45 (patch) | |
tree | a2d1ec4e14b99fb1aaeca2fcdbd3776073fe1850 /ext/reflection/php_reflection.c | |
parent | 2d2bd2db971d4a3d9447418ec47dc79b1a782c95 (diff) | |
download | php-git-28d7bb97a11c8eb55d568cb095517861c2e33d45.tar.gz |
Fix more proto comments
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 2252233c47..5c7f26a9fa 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -2153,7 +2153,7 @@ ZEND_METHOD(reflection_function, getExtensionName) } /* }}} */ -/* {{{ proto public void ReflectionGenerator::__construct(Generator) */ +/* {{{ proto public void ReflectionGenerator::__construct(object Generator) */ ZEND_METHOD(reflection_generator, __construct) { zval *generator, *object; @@ -3839,7 +3839,7 @@ ZEND_METHOD(reflection_class, getStaticPropertyValue) } /* }}} */ -/* {{{ proto public void ReflectionClass::setStaticPropertyValue($name, $value) +/* {{{ proto public void ReflectionClass::setStaticPropertyValue(string $name, mixed $value) Sets the value of a static property */ ZEND_METHOD(reflection_class, setStaticPropertyValue) { |