maintanance and downloading files.

This commit is contained in:
Krzysztof Płaczek
2022-11-16 07:18:21 +01:00
parent 086e4b56b5
commit 21f61b0911
10 changed files with 88 additions and 36 deletions

View File

@@ -20,17 +20,8 @@ class GetVideoFileSize implements ShouldQueue
{
}
public function handle(HtmlParser $htmlParser)
public function handle(SymfonyCastDlService $symfonyCastDlService)
{
// $this->
// $this->videoSize($this->chapter);
// $this->chapter->save();
$service = new SymfonyCastDlService($htmlParser);
$service->videoSize(Chapter::find($this->chapterId));
// dd($this->chapterId);
$symfonyCastDlService->videoSize(Chapter::find($this->chapterId));
}
}