--TEST-- ReflectionMethod::getDocComment() --FILE-- getMethods(); foreach ($rms as $rm) { echo "\n\n---> Doc comment for $class::" . $rm->getName() . "():\n"; var_dump($rm->getDocComment()); } } ?> --EXPECTF-- ---> Doc comment for A::f(): unicode(%s) "/** * My Doc Comment for A::f */" ---> Doc comment for A::privf(): unicode(%s) "/** * My Doc Comment for A::privf */" ---> Doc comment for A::protStatf(): unicode(%s) "/** My Doc Comment for A::protStatf */" ---> Doc comment for A::finalStatPubf(): unicode(%s) "/** * My Doc Comment for A::finalStatPubf */" ---> Doc comment for B::f(): bool(false) ---> Doc comment for B::privf(): unicode(%s) "/** * * My Doc Comment for B::privf */" ---> Doc comment for B::protStatf(): unicode(%s) "/** My Doc Comment for B::protStatf */" ---> Doc comment for B::finalStatPubf(): unicode(%s) "/** * My Doc Comment for A::finalStatPubf */"