/PHP-8.0/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 | 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… 25 echo "getDeclaringClass():\n"; 26 var_dump($constInfo->getDeclaringClass()); 66 getDeclaringClass(): 93 getDeclaringClass(): 120 getDeclaringClass(): 147 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.0/ext/reflection/ |
H A D | php_reflection.stub.php | 194 public function getDeclaringClass() {} function in ReflectionMethod 415 public function getDeclaringClass() {} function in ReflectionProperty 466 public function getDeclaringClass() {} function in ReflectionClassConstant 498 public function getDeclaringClass() {} function in ReflectionParameter
|
H A D | php_reflection_arginfo.h | 551 ZEND_METHOD(ReflectionMethod, getDeclaringClass); 620 ZEND_METHOD(ReflectionProperty, getDeclaringClass); 636 ZEND_METHOD(ReflectionClassConstant, getDeclaringClass); 645 ZEND_METHOD(ReflectionParameter, getDeclaringClass); 785 …ZEND_ME(ReflectionMethod, getDeclaringClass, arginfo_class_ReflectionMethod_getDeclaringClass, ZEN… 872 …ZEND_ME(ReflectionProperty, getDeclaringClass, arginfo_class_ReflectionProperty_getDeclaringClass,… 894 …ZEND_ME(ReflectionClassConstant, getDeclaringClass, arginfo_class_ReflectionClassConstant_getDecla… 909 …ZEND_ME(ReflectionParameter, getDeclaringClass, arginfo_class_ReflectionParameter_getDeclaringClas…
|
H A D | php_reflection.c | 2504 ZEND_METHOD(ReflectionParameter, getDeclaringClass) in ZEND_METHOD() argument 3501 ZEND_METHOD(ReflectionMethod, getDeclaringClass) in ZEND_METHOD() argument 3693 ZEND_METHOD(ReflectionClassConstant, getDeclaringClass) in ZEND_METHOD() argument 5494 ZEND_METHOD(ReflectionProperty, getDeclaringClass) in ZEND_METHOD() argument
|