App\Http\Controllers\API\Download\ArtistController::download PHP Method

download() public method

Don't see why one would need this, really. Let's pray to God the user doesn't trigger this on Elvis.
public download ( Artist $artist ) : BinaryFileResponse
$artist app\models\Artist
return Symfony\Component\HttpFoundation\BinaryFileResponse
    public function download(Artist $artist)
    {
        return response()->download(Download::from($artist));
    }
ArtistController