コード例 #1
0
ファイル: Playlist.php プロジェクト: nsystem1/Pony.fm
 public function pin($userId)
 {
     $pin = new PinnedPlaylist();
     $pin->playlist_id = $this->id;
     $pin->user_id = $userId;
     $pin->save();
 }