Lines Matching refs:T2
19 class T2 extends T1 {}
22 $Prop2 = new ReflectionProperty(T2::class, 'data');
27 $Prop2->setValue(\T2::class, 'hello');
28 var_dump("T2::self = " . T2::getDataBySelf());
29 var_dump("T2::static = " . T2::getDataByStatic());
34 T2::$data = 'hello';
36 var_dump("T2::self = " . T2::getDataBySelf());
37 var_dump("T2::static = " . T2::getDataByStatic());
40 string(16) "T2::self = hello"
41 string(18) "T2::static = hello"
42 string(16) "T2::self = hello"
43 string(18) "T2::static = hello"