Lines Matching refs:prop
7 public $prop {
8 get { echo __METHOD__, "\n"; return $this->prop; }
9 set { echo __METHOD__, "\n"; $this->prop = $value; }
14 $test->prop = null;
15 $test->prop;
16 $test->prop = 1;
17 $test->prop += 1;
18 $test->prop = [];
20 $test->prop[] = 1;
24 isset($test->prop);
25 isset($test->prop[0]);
27 unset($test->prop);
42 Test::$prop::set
43 Test::$prop::get
44 Test::$prop::set
45 Test::$prop::get
46 Test::$prop::set
47 Test::$prop::set
48 Test::$prop::get
49 Indirect modification of Test::$prop is not allowed
50 Test::$prop::get
51 Test::$prop::get
52 Cannot unset hooked property Test::$prop
54 Test::$prop::set
55 Test::$prop::get
56 Test::$prop::set
57 Test::$prop::get
58 Test::$prop::set
59 Test::$prop::set
60 Test::$prop::get
61 Indirect modification of Test::$prop is not allowed
62 Test::$prop::get
63 Test::$prop::get
64 Cannot unset hooked property Test::$prop