Exemplo n.º 1
0
 public function bar()
 {
     // This should link to parent method.
     $x = parent::foo();
     // This should link to the parent method, which is not overridden on
     // this class.
     $this->baz();
 }