예제 #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);
 }