Lines Matching refs:A
5 class A {
12 class B extends A {}
14 $a = new A;
16 $protectedStatic = new ReflectionProperty('A', 'protectedStatic');
18 $privateStatic = new ReflectionProperty('A', 'privateStatic');
72 $a = new A;
119 string(47) "Cannot access non-public property A::$protected"
120 string(53) "Cannot access non-public property A::$protectedStatic"
121 string(45) "Cannot access non-public property A::$private"
122 string(51) "Cannot access non-public property A::$privateStatic"
133 string(45) "Cannot access non-public property A::$private"