Lines Matching refs:obj2
11 function test(string $name, object $obj, object $obj2, object $obj3) {
17 var_dump((new ReflectionClass($obj2::class))->isUninitializedLazyObject($obj2));
18 var_dump($obj2);
29 $obj2 = new D();
30 $obj2->dynamic = 'value';
31 (new ReflectionClass($obj2))->resetAsLazyGhost($obj2, function ($obj2) {
39 test('Ghost', $obj, $obj2, $obj3);
46 $obj2 = new D();
47 $obj2->dynamic = 'value';
48 (new ReflectionClass($obj2))->resetAsLazyProxy($obj2, function ($obj2) {
56 test('Proxy', $obj, $obj2, $obj3);