Example #1
0
 public function hi(Another $another, $name)
 {
     return $this->foo->hello($name . " " . $this->surname) . ' ' . $another->bye($name);
 }
Example #2
0
 public function hi(Another $another, $name)
 {
     return __CLASS__ . '::' . __FUNCTION__ . ' ' . $this->foo->hello($name . " " . $this->surname) . ' ' . $another->bye($name);
 }