1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/reflection/tests/ReflectionProperty_getDocComment_error.phpt
2009-04-08 16:08:58 +00:00

29 lines
734 B
PHP

--TEST--
Test ReflectionProperty::getDocComment() errors.
--FILE--
<?php
class C {
public $a;
}
$rc = new ReflectionProperty('C', 'a');
var_dump($rc->getDocComment(null));
var_dump($rc->getDocComment('X'));
var_dump($rc->getDocComment(true));
var_dump($rc->getDocComment(array(1, 2, 3)));
?>
--EXPECTF--
Warning: ReflectionProperty::getDocComment() expects exactly 0 parameters, 1 given in %s on line %d
NULL
Warning: ReflectionProperty::getDocComment() expects exactly 0 parameters, 1 given in %s on line %d
NULL
Warning: ReflectionProperty::getDocComment() expects exactly 0 parameters, 1 given in %s on line %d
NULL
Warning: ReflectionProperty::getDocComment() expects exactly 0 parameters, 1 given in %s on line %d
NULL