/php-src/ext/reflection/tests/ |
H A D | ReflectionProperty_setAccessible.phpt | 25 $protected->setValue($a, 'e'); 27 $private->setValue($a, 'g'); 28 $privateStatic->setValue(null, 'h'); 45 $protected->setValue($a, 'i'); 46 $protectedStatic->setValue('j'); 47 $private->setValue($a, 'k'); 48 $privateStatic->setValue(null, 'l'); 65 $protected->setValue($b, 'e'); 67 $private->setValue($b, 'g'); 81 $protected->setValue($b, 'h'); [all …]
|
H A D | bug71018.phpt | 2 Bug #71018 (ReflectionProperty::setValue() behavior changed) 26 $Prop1->setValue(\T1::class, "world"); 27 $Prop2->setValue(\T2::class, 'hello'); 35 $Prop2->setValue(\T2::class, 'hi'); 51 Deprecated: Calling ReflectionProperty::setValue() with a 1st argument which is not null or an obje… 53 Deprecated: Calling ReflectionProperty::setValue() with a 1st argument which is not null or an obje… 56 Calling ReflectionProperty::setValue() with a 1st argument which is not null or an object is deprec…
|
H A D | bug30146.phpt | 12 $r->setValue(NULL, 2); 15 $r->setValue(3); 22 Deprecated: Calling ReflectionProperty::setValue() with a single argument is deprecated in %s on li…
|
H A D | ReflectionProperty_setValue_error.phpt | 2 Test ReflectionProperty::setValue() error cases. 25 $propInfo->setValue($instance, "NewValue"); 30 var_dump($propInfo->setValue($instanceWithNoProperties, "NewValue"));
|
H A D | internal_static_property.phpt | 2 ReflectionProperty::get/setValue() on internal static property 9 $rp->setValue(new _ZendTestClass(), 42);
|
H A D | ReflectionProperty_setValue_readonly.phpt | 2 Test ReflectionProperty::setValue() error cases. 13 $reflection->setValue(Foo::Bar, 1);
|
H A D | ReflectionProperty_basic1.phpt | 2 …String(), getName(), isPublic(), isPrivate(), isProtected(), isStatic(), getValue() and setValue(). 26 $propInfo->setValue($instance, "NewValue"); 27 echo "getValue() after a setValue():\n"; 65 getValue() after a setValue(): 87 getValue() after a setValue():
|
H A D | ReflectionProperty_typed_static.phpt | 22 $rp->setValue(null, "24"); 26 $rp->setValue(null, "foo"); 36 $rp->setValue(null, "foo");
|
H A D | asymmetric_visibility_write.phpt | 15 $reflectionProperty->setValue($foo, $i++);
|
H A D | bug79683.phpt | 26 $property->setValue($b, new A());
|
/php-src/Zend/tests/ |
H A D | bug72177.phpt | 2 Bug #72177 Scope issue in __destruct after ReflectionProperty::setValue() 24 $prop->setValue($this, null);
|
H A D | bug39944.phpt | 12 function setValue(&$int, $iNewValue) { 16 setValue(getValue(), 10); 21 setValue(getValue(), 10);
|
H A D | bug63762.phpt | 10 $ref->setValue($e, array(NULL)); 15 $ref->setValue($e, array(array())); 19 $ref->setValue($e, array(array(
|
H A D | bug72177_2.phpt | 2 Bug #72177 Scope issue in __destruct after ReflectionProperty::setValue()
|
H A D | bug78868.phpt | 28 $props[0]->setValue(null, 2); //causes constant resolving, which runs autoload, all with EG(fake_sc…
|
/php-src/Zend/tests/lazy_objects/rfc/ |
H A D | rfc_example_004.phpt | 33 // Without this line, the following call to ReflectionProperty::setValue() would trigger initializa… 35 $reflector->getProperty('id')->setValue($post, 123);
|
H A D | rfc_example_005.phpt | 32 // Without this line, the following call to ReflectionProperty::setValue() would trigger initializa… 34 $reflector->getProperty('id')->setValue($post, 123);
|
H A D | rfc_example_011.phpt | 36 $reflector->getProperty('name')->setValue($entity, $data['name']); 37 $reflector->getProperty('email')->setValue($entity, $data['email']);
|
/php-src/ext/soap/tests/bugs/ |
H A D | bug51561.phpt | 28 public function setValue($param) { $this->value = $param; } 40 $cli->setValue(100);
|
/php-src/ext/reflection/tests/property_hooks/ |
H A D | ReflectionProperty_getSetValue.phpt | 22 $propertyReflection->setValue($test, 'Baz');
|
/php-src/Zend/tests/lazy_objects/ |
H A D | use_case_002.phpt | 30 $prop->setValue($obj, 'John Doe');
|
H A D | skipLazyInitialization.phpt | 72 $propReflector->setValue($obj, ''); 117 function setValue($obj, $value) {
|
/php-src/ext/reflection/ |
H A D | php_reflection.stub.php | 489 public function setValue(mixed $objectOrValue, mixed $value = UNKNOWN): void {} function in ReflectionProperty
|
H A D | php_reflection_arginfo.h | 855 ZEND_METHOD(ReflectionProperty, setValue); 1156 ZEND_ME(ReflectionProperty, setValue, arginfo_class_ReflectionProperty_setValue, ZEND_ACC_PUBLIC)
|
H A D | php_reflection.c | 5831 ZEND_METHOD(ReflectionProperty, setValue) in ZEND_METHOD() argument
|