summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug71767.phpt
blob: 8c4059abf4dee3328f01929f84194d1cd1c22ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
--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
    ) {
        
    }
}

/** Correct docblock */
$func = function(
    /** wrong docblock */
    $arg
) {
};

$reflectionFunction = new ReflectionFunction('foo');
$reflectionClass = new ReflectionClass(Foo::class);
$reflectionClosure = new ReflectionFunction($func);

echo $reflectionFunction->getDocComment() . PHP_EOL;
echo $reflectionClass->getMethod('bar')->getDocComment() . PHP_EOL;
echo $reflectionClosure->getDocComment() . PHP_EOL;

echo "Done\n";
?>
--EXPECTF--
/** Correct docblock */
/** Correct docblock */
/** Correct docblock */
Done