You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
687 B

--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: Wrong parameter count for ReflectionProperty::getDocComment() in %s on line %d
NULL
Warning: Wrong parameter count for ReflectionProperty::getDocComment() in %s on line %d
NULL
Warning: Wrong parameter count for ReflectionProperty::getDocComment() in %s on line %d
NULL
Warning: Wrong parameter count for ReflectionProperty::getDocComment() in %s on line %d
NULL