コード例 #1
0
ファイル: UserManager.php プロジェクト: sulu/sulu
 /**
  * Finds all users for the given account.
  *
  * @param int $accountId
  *
  * @return array
  */
 public function findUsersByAccount($accountId, $sortBy = [])
 {
     return $this->userRepository->findUsersByAccount($accountId, $sortBy);
 }
コード例 #2
0
ファイル: UserManager.php プロジェクト: kriswillis/sulu
 /**
  * Finds all users for the given account.
  *
  * @param int $accountId
  *
  * @return array
  */
 public function findUsersByAccount($accountId)
 {
     return $this->userRepository->findUsersByAccount($accountId);
 }