public function foo()
 {
     \a32::ma32();
     \a32::ma321();
     // Do not exists
     \b2::ma2();
 }
 public function foo()
 {
     a32::ma32();
     a32::ma321();
     // Do not exists
     b2::ma2();
 }
 public function foo()
 {
     parent::ma32();
     parent::ma321();
     // Do not exists
     b2::ma2();
 }
 public function foo()
 {
     self::ma32();
     self::ma321();
     // Do not exists
     b2::ma2();
 }
 public function foo()
 {
     static::ma32();
     static::ma321();
     // Do not exists
     b2::ma2();
 }
Beispiel #6
0
 public function test()
 {
     a2::foo();
     b2::foo();
 }
Beispiel #7
0
 public function test1a()
 {
     b2::foo();
 }