Exemple #1
0
 public function doMeth()
 {
     $this->meth();
     // G G G
     B::meth();
     // B B    (Zend: B G G) (Rule 1)
     C::meth();
     // C C    (Zend: C G G) (Rule 1)
     D::meth();
     // D D    (Zend: D G G) (Rule 1)
     F::meth();
     // F G G
     G::meth();
     // G G G
     H::meth();
     // H H    (Zend: H G G) (Rule 1)
     parent::meth();
     // F G G
     self::meth();
     // G G G
     static::meth();
     // G G G
     echo "****************\n";
 }
 function test()
 {
     D::meth();
 }