Lines Matching refs:prop
7 public readonly int $prop;
10 $this->prop = 3;
15 $this->prop = 2;
21 $test->prop = 1;
32 var_dump($test->prop);
37 $this->prop = 1;
39 var_dump($test->prop);
42 public readonly int $prop;
47 var_dump($test->prop);
51 $this->prop = 1;
55 public readonly int $prop;
67 Cannot initialize readonly property A::$prop from global scope
68 Cannot initialize readonly property A::$prop from scope B
72 Cannot initialize readonly property Y::$prop from scope X