Lines Matching refs:prop
7 public int $prop = 1;
12 public private(set) 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);
48 unset($test->prop->array[0]);
78 Init: 0, op: r: Typed property Test::$prop must not be accessed before initialization
79 Init: 0, op: w: Cannot indirectly modify private(set) property Test::$prop from global scope
80 Init: 0, op: rw: Typed property Test::$prop must not be accessed before initialization
81 Init: 0, op: im: Cannot indirectly modify private(set) property Test::$prop from global scope