コード例 #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);
 }