示例#1
0
文件: Bar.php 项目: gonzalo123/new
 public function hi(Another $another, $name)
 {
     return $this->foo->hello($name . " " . $this->surname) . ' ' . $another->bye($name);
 }
示例#2
0
文件: Bar.php 项目: gonzalo123/new
 public function hi(Another $another, $name)
 {
     return __CLASS__ . '::' . __FUNCTION__ . ' ' . $this->foo->hello($name . " " . $this->surname) . ' ' . $another->bye($name);
 }