예제 #1
0
파일: UserPalsApi.php 프로젝트: romeo14/pow
 public static function addPal($userId, $palId, $type)
 {
     $userPals = new UserPals();
     $userPals->user_id = $userId;
     $userPals->pal_id = $palId;
     $userPals->type = $type;
     return $userPals->save();
 }