Beispiel #1
0
 function foo()
 {
     parent::inAA();
     parent::inA();
     parent::inB();
     parent::inTrait();
     parent::nowhere();
     c::inC();
 }
Beispiel #2
0
 function foo()
 {
     static::inAA();
     static::inA();
     static::inB();
     static::inTrait();
     static::nowhere();
     c::inC();
 }
Beispiel #3
0
 function foo()
 {
     \a::inAA();
     \a::inA();
     \a::inB();
     \a::inTrait();
     \a::nowhere();
     \c::inC();
 }
Beispiel #4
0
 function foo()
 {
     a::inAA();
     a::inA();
     a::inB();
     a::inTrait();
     a::nowhere();
     c::inC();
 }
Beispiel #5
0
 function foo()
 {
     self::inAA();
     self::inA();
     self::inB();
     self::inTrait();
     self::nowhere();
     c::inC();
 }
Beispiel #6
0
 function foo()
 {
     a::$inAAAA = 1;
     a::$inAAA = 1;
     a::$inAA = 1;
     a::$inA = 1;
     a::$inB = 1;
     a::$inTrait = 1;
     a::$nowhere = 1;
     c::$inC = 1;
 }