/PHP-8.2/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 Test usage of ReflectionProperty methods isDefault(), getModifiers(), getDeclaringClass() and getDo… 16 echo "getDeclaringClass():\n"; 17 var_dump($propInfo->getDeclaringClass()); 47 getDeclaringClass(): 63 getDeclaringClass(): 79 getDeclaringClass(): 97 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 | parameters_002.phpt | 83 getDeclaringClass: NULL 96 getDeclaringClass: NULL 109 getDeclaringClass: NULL 122 getDeclaringClass: NULL 135 getDeclaringClass: NULL 148 getDeclaringClass: NULL 162 getDeclaringClass: NULL 177 getDeclaringClass: test 190 getDeclaringClass: test 203 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()); 72 getDeclaringClass(): 101 getDeclaringClass(): 130 getDeclaringClass(): 159 getDeclaringClass(): 188 getDeclaringClass():
|
H A D | ReflectionProperty_getDeclaringClass_variation1.phpt | 2 Test ReflectionProperty::getDeclaringClass() with inherited properties. 14 var_dump($propInfo->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.2/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.2/ext/reflection/ |
H A D | php_reflection.stub.php | 244 public function getDeclaringClass(): ReflectionClass {} function in ReflectionMethod 527 public function getDeclaringClass(): ReflectionClass {} function in ReflectionProperty 604 public function getDeclaringClass(): ReflectionClass {} function in ReflectionClassConstant 640 public function getDeclaringClass(): ?ReflectionClass {} function in ReflectionParameter
|
H A D | php_reflection_arginfo.h | 670 ZEND_METHOD(ReflectionMethod, getDeclaringClass); 743 ZEND_METHOD(ReflectionProperty, getDeclaringClass); 760 ZEND_METHOD(ReflectionClassConstant, getDeclaringClass); 770 ZEND_METHOD(ReflectionParameter, getDeclaringClass); 932 …ZEND_ME(ReflectionMethod, getDeclaringClass, arginfo_class_ReflectionMethod_getDeclaringClass, ZEN… 1023 …ZEND_ME(ReflectionProperty, getDeclaringClass, arginfo_class_ReflectionProperty_getDeclaringClass,… 1046 …ZEND_ME(ReflectionClassConstant, getDeclaringClass, arginfo_class_ReflectionClassConstant_getDecla… 1062 …ZEND_ME(ReflectionParameter, getDeclaringClass, arginfo_class_ReflectionParameter_getDeclaringClas…
|
H A D | php_reflection.c | 2652 ZEND_METHOD(ReflectionParameter, getDeclaringClass) in ZEND_METHOD() argument 3729 ZEND_METHOD(ReflectionMethod, getDeclaringClass) in ZEND_METHOD() argument 3955 ZEND_METHOD(ReflectionClassConstant, getDeclaringClass) in ZEND_METHOD() argument 5787 ZEND_METHOD(ReflectionProperty, getDeclaringClass) in ZEND_METHOD() argument
|