php-src/ext/reflection/tests/bug71767.phpt

54 lines
1.0 KiB
Plaintext
Raw Normal View History

2016-03-11 16:28:45 +00:00
--TEST--
Bug #71767 (ReflectionMethod::getDocComment returns the wrong comment)
--FILE--
<?php
/** Correct docblock */
function foo(
/** wrong docblock */
$arg
) {
}
class Foo {
/** Correct docblock */
public function bar(
/** wrong docblock */
$arg
) {
2018-09-16 17:16:42 +00:00
2016-03-11 16:28:45 +00:00
}
}
/** Correct docblock */
$func = function(
/** wrong docblock */
$arg
) {
};
/** Correct docblock */
$func2 = fn(
/** wrong docblock */
$arg
) => null;
2016-03-11 16:28:45 +00:00
$reflectionFunction = new ReflectionFunction('foo');
$reflectionClass = new ReflectionClass(Foo::class);
$reflectionClosure = new ReflectionFunction($func);
$reflectionArrowFn = new ReflectionFunction($func2);
2016-03-11 16:28:45 +00:00
echo $reflectionFunction->getDocComment() . PHP_EOL;
echo $reflectionClass->getMethod('bar')->getDocComment() . PHP_EOL;
echo $reflectionClosure->getDocComment() . PHP_EOL;
echo $reflectionArrowFn->getDocComment() . PHP_EOL;
2016-03-11 16:28:45 +00:00
echo "Done\n";
?>
--EXPECT--
2016-03-11 16:28:45 +00:00
/** Correct docblock */
/** Correct docblock */
/** Correct docblock */
/** Correct docblock */
2016-03-11 16:28:45 +00:00
Done