feat: download movie to dedicated directory

This commit is contained in:
2025-05-19 22:28:00 -05:00
parent 4638f3765a
commit 3074b2d5f1
5 changed files with 71 additions and 15 deletions

View File

@@ -10,11 +10,11 @@ use App\Message\DownloadTvShowMessage;
interface DownloaderInterface
{
/**
* @param string $baseDir
* @param string $mediaType
* @param string $title
* @param string $url
* @return void
* Downloads the requested file.
*/
public function download(string $baseDir, string $title, string $url, ?int $downloadId): void;
public function download(string $mediaType, string $title, string $url, ?int $downloadId): void;
}