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 {
75 showInfo("A::pubC");
76 showInfo("A::protC");
77 showInfo("A::privC");
103 %unicode|string%(1) "A"
105 %unicode|string%(9) "pubA in A"
111 %unicode|string%(1) "A"
160 --- (Reflecting on A::pubC) ---
165 %unicode|string%(1) "A"
167 %unicode|string%(9) "pubC in A"
168 --- (Reflecting on A::protC) ---
173 %unicode|string%(1) "A"
175 Cannot access non-public member A::protC
176 --- (Reflecting on A::privC) ---
181 %unicode|string%(1) "A"
183 Cannot access non-public member A::privC