Lines Matching refs:A
8 class A {
9 static public $pubC = "pubC in A";
10 static protected $protC = "protC in A";
11 static private $privC = "privC in A";
13 static public $pubA = "pubA in A";
14 static protected $protA = "protA in A";
15 static private $privA = "privA in A";
18 class B extends A {
71 showInfo("A::pubC");
72 showInfo("A::protC");
73 showInfo("A::privC");
99 string(1) "A"
101 string(9) "pubA in A"
107 string(1) "A"
109 string(10) "protA in A"
156 --- (Reflecting on A::pubC) ---
161 string(1) "A"
163 string(9) "pubC in A"
164 --- (Reflecting on A::protC) ---
169 string(1) "A"
171 string(10) "protC in A"
172 --- (Reflecting on A::privC) ---
177 string(1) "A"
179 string(10) "privC in A"