Lines Matching refs:A

10 class A {
11 static public $statPubC = "stat pubC in A";
12 static protected $statProtC = "stat protC in A";
13 static private $statPrivC = "stat privC in A";
15 static public $statPubA = "stat pubA in A";
16 static protected $statProtA = "stat protA in A";
17 static private $statPrivA = "stat privA in A";
19 public $pubC = "pubC in A";
20 protected $protC = "protC in A";
21 private $privC = "privC in A";
23 public $pubA = "pubA in A";
24 protected $protA = "protA in A";
25 private $privA = "privA in A";
28 class B extends A {
66 $classes = array('A', 'B', 'C', 'X');
77 ---- Static properties in A ----
80 [statPubC] => stat pubC in A
81 [statProtC] => stat protC in A
82 [statPrivC] => stat privC in A
83 [statPubA] => stat pubA in A
84 [statProtA] => stat protA in A
85 [statPrivA] => stat privA in A
89 ---- Default properties in A ----
92 [statPubC] => stat pubC in A
93 [statProtC] => stat protC in A
94 [statPrivC] => stat privC in A
95 [statPubA] => stat pubA in A
96 [statProtA] => stat protA in A
97 [statPrivA] => stat privA in A
98 [pubC] => pubC in A
99 [protC] => protC in A
100 [privC] => privC in A
101 [pubA] => pubA in A
102 [protA] => protA in A
103 [privA] => privA in A
116 [statPubA] => stat pubA in A
117 [statProtA] => stat protA in A
130 [statPubA] => stat pubA in A
131 [statProtA] => stat protA in A
138 [pubA] => pubA in A
139 [protA] => protA in A
151 [statPubA] => stat pubA in A
152 [statProtA] => stat protA in A
164 [statPubA] => stat pubA in A
165 [statProtA] => stat protA in A
171 [pubA] => pubA in A
172 [protA] => protA in A