Lines Matching refs:prop
7 public int $prop = 1;
12 public readonly Inner $prop;
15 $this->prop = new Inner();
20 echo $test->prop->prop;
24 $test->prop->prop = 0;
29 $test->prop->prop += 1;
34 $test->prop->array[] = 1;
39 echo (int) isset($test->prop->prop);
43 unset($test->prop->prop);
72 Init: 0, op: r: Typed property Test::$prop must not be accessed before initialization
73 Init: 0, op: w: Cannot indirectly modify readonly property Test::$prop
74 Init: 0, op: rw: Typed property Test::$prop must not be accessed before initialization
75 Init: 0, op: im: Cannot indirectly modify readonly property Test::$prop