コード例 #1
0
ファイル: UserService.php プロジェクト: tests1/zendcasts
 public function GetUser($id)
 {
     return $this->users->find($id);
 }
コード例 #2
0
ファイル: UserService.php プロジェクト: tests1/zendcasts
 public function GetUser($id)
 {
     $row = $this->users->find($id);
     return $row;
 }