<?php
namespace App\Http\Controllers\Download;
use App\Http\Controllers\Controller;
use App\Models\Artist;
use App\Models\User;
use App\Repositories\SongRepository;
use App\Services\DownloadService;
use Illuminate\Contracts\Auth\Authenticatable;
class DownloadArtistController extends Controller
{
public function __invoke(
Artist $artist,
SongRepository $repository,
DownloadService $service,
Authenticatable $user
) {
return $service->getDownloadable($repository->getByArtist($artist, $user))?->toResponse();
}
}