Exemplo n.º 1
0
 /**
  * @param $userId
  * @param $type
  * @param $token
  * @param $socialId
  * @return bool
  */
 public function createItem($userId, $type, $token, $socialId)
 {
     $userSocial = new userSocialModel();
     $userSocial->user_id = $userId;
     $userSocial->type = $type;
     $userSocial->token = $token;
     $userSocial->social_id = $socialId;
     return $userSocial->save();
 }