diff --git a/Command/ImportJobsFromYouTubeDownloadCommand.php b/Command/ImportJobsFromYouTubeDownloadCommand.php index 24d91c7..dfe7b17 100644 --- a/Command/ImportJobsFromYouTubeDownloadCommand.php +++ b/Command/ImportJobsFromYouTubeDownloadCommand.php @@ -4,6 +4,8 @@ namespace Pumukit\YoutubeBundle\Command; +use Doctrine\ODM\MongoDB\DocumentManager; +use Pumukit\EncoderBundle\Services\JobService; use Pumukit\SchemaBundle\Document\MultimediaObject; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Helper\ProgressBar; @@ -13,6 +15,8 @@ final class ImportJobsFromYouTubeDownloadCommand extends Command { public const DEFAULT_PROFILE_ENCODER = 'broadcastable_master'; + + private DocumentManager $documentManager; private JobService $jobService; private string $tempDir; private string $channelId;