Lines Matching refs:prop
7 public readonly int $prop;
10 $this->prop = 1;
14 echo $this->prop;
18 $this->prop = 1;
23 $this->prop += 1;
28 $this->prop[] = 1;
33 echo (int) isset($this->prop);
37 unset($this->prop);
43 echo $test->prop;
47 $test->prop = 0;
52 $test->prop += 1;
57 $test->prop[] = 1;
62 echo (int) isset($test->prop);
66 unset($test->prop);
96 Init: 1, scope: 1, op: w: Cannot modify readonly property Test::$prop
97 Init: 1, scope: 1, op: rw: Cannot modify readonly property Test::$prop
98 Init: 1, scope: 1, op: im: Cannot modify readonly property Test::$prop
100 Init: 1, scope: 1, op: us: Cannot unset readonly property Test::$prop
102 Init: 1, scope: 0, op: w: Cannot modify readonly property Test::$prop
103 Init: 1, scope: 0, op: rw: Cannot modify readonly property Test::$prop
104 Init: 1, scope: 0, op: im: Cannot modify readonly property Test::$prop
106 Init: 1, scope: 0, op: us: Cannot unset readonly property Test::$prop
107 Init: 0, scope: 1, op: r: Typed property Test::$prop must not be accessed before initialization
109 Init: 0, scope: 1, op: rw: Typed property Test::$prop must not be accessed before initialization
110 Init: 0, scope: 1, op: im: Cannot indirectly modify readonly property Test::$prop
113 Init: 0, scope: 0, op: r: Typed property Test::$prop must not be accessed before initialization
114 Init: 0, scope: 0, op: w: Cannot initialize readonly property Test::$prop from global scope
115 Init: 0, scope: 0, op: rw: Typed property Test::$prop must not be accessed before initialization
116 Init: 0, scope: 0, op: im: Cannot indirectly modify readonly property Test::$prop
118 Init: 0, scope: 0, op: us: Cannot unset readonly property Test::$prop from global scope