コード例 #1
0
ファイル: ThreadService.php プロジェクト: nilsenj/itway
 /**
  * Returns a collection of threads for a given user
  *
  * @param $userId
  * @return Thread
  */
 public function getThreadsForUser($userId)
 {
     return $this->repo->getForUser($userId);
 }