Lines Matching refs:C
46 class C extends B {
47 static public $statPubC = "stat pubC in C";
48 static protected $statProtC = "stat protC in C";
49 static private $statPrivC = "stat privC in C";
51 public $pubC = "pubC in C";
52 protected $protC = "protC in C";
53 private $privC = "privC in C";
66 $classes = array('A', 'B', 'C', 'X');
143 ---- Static properties in C ----
146 [statPubC] => stat pubC in C
147 [statProtC] => stat protC in C
148 [statPrivC] => stat privC in C
156 ---- Default properties in C ----
159 [statPubC] => stat pubC in C
160 [statProtC] => stat protC in C
161 [statPrivC] => stat privC in C
166 [pubC] => pubC in C
167 [protC] => protC in C
168 [privC] => privC in C