From 8e3e86c44f3b48ce37772f048f8d7a826c89b81a Mon Sep 17 00:00:00 2001 From: Pablo Ogando Ferreira Date: Fri, 8 Mar 2024 11:15:36 +0100 Subject: [PATCH] TTK-26902 fix namespaces --- Command/ImportJobsFromYouTubeDownloadCommand.php | 4 ++++ 1 file changed, 4 insertions(+) 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;