/PHP-8.0/ext/reflection/tests/ |
H A D | bug71767.phpt | 2 Bug #71767 (ReflectionMethod::getDocComment returns the wrong comment) 41 echo $reflectionFunction->getDocComment() . PHP_EOL; 42 echo $reflectionClass->getMethod('bar')->getDocComment() . PHP_EOL; 43 echo $reflectionClosure->getDocComment() . PHP_EOL; 44 echo $reflectionArrowFn->getDocComment() . PHP_EOL;
|
H A D | ReflectionProperty_basic2.phpt | 2 …of ReflectionProperty methods isDefault(), getModifiers(), getDeclaringClass() and getDocComment(). 18 echo "getDocComment():\n"; 19 var_dump($propInfo->getDocComment()); 52 getDocComment(): 68 getDocComment(): 84 getDocComment(): 102 getDocComment():
|
H A D | ReflectionMethod_getDocComment_property_list.phpt | 2 ReflectionMethod::getDocComment() 23 var_dump($reflection->getDocComment()); 27 var_dump($reflection->getDocComment()); 31 var_dump($reflection->getDocComment());
|
H A D | bug79062.phpt | 2 Bug #79062: Property with heredoc default value returns false for getDocComment 22 var_dump($s1->getDocComment()); 25 var_dump($s2->getDocComment()); 28 var_dump($s2->getDocComment());
|
H A D | ReflectionClassConstant_basic1.phpt | 2 …), isPublic(), isPrivate(), isProtected(), getModifiers(), getDeclaringClass() and getDocComment(). 27 echo "getDocComment():\n"; 28 var_dump($constInfo->getDocComment()); 71 getDocComment(): 98 getDocComment(): 125 getDocComment(): 152 getDocComment():
|
H A D | 005.phpt | 2 ReflectionMethod::getDocComment() uses wrong comment block 41 var_dump(strip_doc_comment($r->getDocComment())); 45 var_dump(strip_doc_comment($m->getDocComment()));
|
H A D | bug64936.phpt | 2 ReflectionMethod::getDocComment() uses left over doc comment from previous scanner run 21 var_dump(strip_doc_comment($ra->getDocComment())); 28 var_dump(strip_doc_comment($rb->getDocComment()));
|
H A D | bug36308.phpt | 2 Reflection Bug #36308 (ReflectionProperty::getDocComment() does not reflect extended class commenta… 19 echo $props[0]->getDocComment();
|
H A D | ReflectionFunction_getDocComment.001.phpt | 2 ReflectionFunction::getDocComment() 29 var_dump($funcInfo->getDocComment());
|
H A D | 009.phpt | 30 echo "--getDocComment--\n"; 31 var_dump($func->getDocComment()); 75 --getDocComment--
|
H A D | 025.phpt | 30 echo "--getDocComment--\n"; 31 var_dump($func->getDocComment()); 75 --getDocComment--
|
H A D | ReflectionClass_getDocComment_001.phpt | 2 ReflectionClass::getDocComment() 53 var_dump($rc->getDocComment());
|
H A D | ReflectionMethod_getDocComment_basic.phpt | 2 ReflectionMethod::getDocComment() 62 var_dump($rm->getDocComment());
|
H A D | ReflectionProperty_getDocComment_basic.phpt | 2 Test ReflectionProperty::getDocComment() usage. 39 var_dump($rp->getDocComment());
|
H A D | constructor_promotion.phpt | 21 var_dump($y->getDocComment());
|
H A D | 001.phpt | 34 'UMLClass::getDocComment',
|
H A D | ReflectionClass_toString_001.phpt | 106 Method [ <internal:Reflection> public method getDocComment ] {
|
/PHP-8.0/Zend/tests/ |
H A D | bug55156.phpt | 2 Bug #55156 (ReflectionClass::getDocComment() returns comment even though the class has none) 13 var_dump($x->getDocComment()); 22 var_dump($x->getDocComment()); 25 var_dump($x->getDocComment());
|
H A D | bug50174.phpt | 15 var_dump($rm->getDocComment()); 26 var_dump($rp->getDocComment());
|
/PHP-8.0/ext/reflection/ |
H A D | php_reflection.stub.php | 55 public function getDocComment() {} function in ReflectionFunctionAbstract 239 public function getDocComment() {} function in ReflectionClass 418 public function getDocComment() {} function in ReflectionProperty 469 public function getDocComment() {} function in ReflectionClassConstant
|
H A D | php_reflection_arginfo.h | 507 ZEND_METHOD(ReflectionFunctionAbstract, getDocComment); 565 ZEND_METHOD(ReflectionClass, getDocComment); 621 ZEND_METHOD(ReflectionProperty, getDocComment); 637 ZEND_METHOD(ReflectionClassConstant, getDocComment); 726 …ZEND_ME(ReflectionFunctionAbstract, getDocComment, arginfo_class_ReflectionFunctionAbstract_getDoc… 805 …ZEND_ME(ReflectionClass, getDocComment, arginfo_class_ReflectionClass_getDocComment, ZEND_ACC_PUBL… 873 …ZEND_ME(ReflectionProperty, getDocComment, arginfo_class_ReflectionProperty_getDocComment, ZEND_AC… 895 …ZEND_ME(ReflectionClassConstant, getDocComment, arginfo_class_ReflectionClassConstant_getDocCommen…
|
H A D | php_reflection.c | 1770 ZEND_METHOD(ReflectionFunctionAbstract, getDocComment) in ZEND_METHOD() argument 3708 ZEND_METHOD(ReflectionClassConstant, getDocComment) in ZEND_METHOD() argument 4107 ZEND_METHOD(ReflectionClass, getDocComment) in ZEND_METHOD() argument 5511 ZEND_METHOD(ReflectionProperty, getDocComment) in ZEND_METHOD() argument
|
/PHP-8.0/tests/classes/ |
H A D | constants_comments_001.phpt | 23 echo $rc->getName() . " : " . $rc->getDocComment() . "\n";
|
/PHP-8.0/build/ |
H A D | gen_stub.php | 1090 $comment = $func->getDocComment();
|