예제 #1
0
파일: Identity.php 프로젝트: maniolek/demo
 /**
  * Finds indicated user oAuth identities
  *
  * @param \MongoId $userId
  * @return array
  */
 public static function findUserIdentities(\MongoId $userId)
 {
     return Identity::find([['user_id' => $userId]]);
 }