/PHP-8.4/ext/reflection/tests/ |
H A D | bug45139.phpt | 24 var_dump($rp->getDeclaringClass()->getName()); // c 28 var_dump($rp->getDeclaringClass()->getName()); // A 32 var_dump($rp->getDeclaringClass()->getName()); // B 36 var_dump($rp->getDeclaringClass()->getName()); // B 40 var_dump($rp->getDeclaringClass()->getName()); // C 44 var_dump($rp->getDeclaringClass()->getName()); // B 48 var_dump($rp->getDeclaringClass()->getName()); // C
|
H A D | bug39067.phpt | 2 Bug #39067 (getDeclaringClass() and private properties) 19 var_dump($rc->getProperty('x')->getDeclaringClass()->getName()); 22 var_dump($rc->getProperty('x')->getDeclaringClass()->getName()); 25 var_dump($rc->getProperty('x')->getDeclaringClass()->getName()); 36 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
|
H A D | ReflectionProperty_basic2.phpt | 2 …eflectionProperty methods isDefault(), isDynamic(), getModifiers(), getDeclaringClass() and getDoc… 19 echo "getDeclaringClass():\n"; 20 var_dump($propInfo->getDeclaringClass()); 57 getDeclaringClass(): 75 getDeclaringClass(): 93 getDeclaringClass(): 113 getDeclaringClass(): 131 getDeclaringClass():
|
H A D | ReflectionMethod_getDeclaringClass_basic.phpt | 2 ReflectionMethod::getDeclaringClass() 15 var_dump($methodInfo->getDeclaringClass()); 18 var_dump($methodInfo->getDeclaringClass());
|
H A D | bug81457.phpt | 2 Bug #81457: Enum ReflectionMethod->getDeclaringClass() return a ReflectionClass 16 echo $me->getDeclaringClass()::class, "\n"; 21 echo $mc->getDeclaringClass()::class, "\n";
|
H A D | ReflectionProperty_getDeclaringClass_variation1.phpt | 2 Test ReflectionProperty::getDeclaringClass() with inherited properties. 14 var_dump($propInfo->getDeclaringClass());
|
H A D | parameters_002.phpt | 84 getDeclaringClass: NULL 97 getDeclaringClass: NULL 110 getDeclaringClass: NULL 123 getDeclaringClass: NULL 136 getDeclaringClass: NULL 149 getDeclaringClass: NULL 163 getDeclaringClass: NULL 178 getDeclaringClass: test 191 getDeclaringClass: test 204 getDeclaringClass: test [all …]
|
H A D | ReflectionClassConstant_basic1.phpt | 2 …getValue(), isPublic(), isPrivate(), isProtected(), getModifiers(), getDeclaringClass() and getDoc… 27 echo "getDeclaringClass():\n"; 28 var_dump($constInfo->getDeclaringClass()); 77 getDeclaringClass(): 110 getDeclaringClass(): 142 getDeclaringClass(): 174 getDeclaringClass(): 206 getDeclaringClass():
|
H A D | bug39001.phpt | 19 var_dump($r->getProperty('publicVar')->getDeclaringClass()->getName()); 20 var_dump($r->getProperty('protectedVar')->getDeclaringClass()->getName());
|
H A D | bug77325.phpt | 17 var_dump($constant->getDeclaringClass()->getName()); 22 var_dump($constant->getDeclaringClass()->getName());
|
H A D | bug48336.phpt | 2 Bug #48286 (ReflectionProperty::getDeclaringClass() does not work with redeclared properties) 31 print($rp->getDeclaringClass()->getName());
|
H A D | bug38465.phpt | 26 …echo $method->getDeclaringClass()->getName(), '::', $method->getName(), '($', $param->getName(), '… 39 …echo $method->getDeclaringClass()->getName(), '::', $method->getName(), '($', $param->getName(), '…
|
H A D | bug36434.phpt | 25 echo $p->getName(). " ". $p->getDeclaringClass()->getName()."\n";
|
H A D | bug80190.phpt | 26 print $method->getDeclaringClass()->getName() . '::' . $method->getName() . '()' . PHP_EOL;
|
/PHP-8.4/Zend/tests/traits/ |
H A D | constant_019.phpt | 16 var_dump($reflection->getReflectionConstant('Constant')->getDeclaringClass()->getName()); 20 var_dump($reflection->getReflectionConstant('Constant')->getDeclaringClass()->getName());
|
/PHP-8.4/ext/reflection/ |
H A D | php_reflection.stub.php | 227 public function getDeclaringClass(): ReflectionClass {} function in ReflectionMethod 543 public function getDeclaringClass(): ReflectionClass {} function in ReflectionProperty 621 public function getDeclaringClass(): ReflectionClass {} function in ReflectionClassConstant 663 public function getDeclaringClass(): ?ReflectionClass {} function in ReflectionParameter
|
H A D | php_reflection_arginfo.h | 776 ZEND_METHOD(ReflectionMethod, getDeclaringClass); 867 ZEND_METHOD(ReflectionProperty, getDeclaringClass); 890 ZEND_METHOD(ReflectionClassConstant, getDeclaringClass); 903 ZEND_METHOD(ReflectionParameter, getDeclaringClass); 1059 …ZEND_ME(ReflectionMethod, getDeclaringClass, arginfo_class_ReflectionMethod_getDeclaringClass, ZEN… 1165 …ZEND_ME(ReflectionProperty, getDeclaringClass, arginfo_class_ReflectionProperty_getDeclaringClass,… 1193 …ZEND_ME(ReflectionClassConstant, getDeclaringClass, arginfo_class_ReflectionClassConstant_getDecla… 1211 …ZEND_ME(ReflectionParameter, getDeclaringClass, arginfo_class_ReflectionParameter_getDeclaringClas…
|
H A D | php_reflection.c | 2691 ZEND_METHOD(ReflectionParameter, getDeclaringClass) in ZEND_METHOD() argument 3785 ZEND_METHOD(ReflectionMethod, getDeclaringClass) in ZEND_METHOD() argument 4055 ZEND_METHOD(ReflectionClassConstant, getDeclaringClass) in ZEND_METHOD() argument 6367 ZEND_METHOD(ReflectionProperty, getDeclaringClass) in ZEND_METHOD() argument
|