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(); }
public function test() { a2::foo(); b2::foo(); }
public function test1a() { b2::foo(); }