1 | <?php |
||
12 | class ReleaseDateNotifications extends Command |
||
13 | { |
||
14 | /** @var $repository MovieReleaseDateRepository */ |
||
15 | private $repository; |
||
16 | |||
17 | /** @var $emailService SendEmailService */ |
||
18 | private $emailService; |
||
19 | |||
20 | public function __construct(MovieReleaseDateRepository $repository, SendEmailService $emailService, ?string $name = null) |
||
27 | |||
28 | protected function configure() |
||
35 | |||
36 | protected function execute(InputInterface $input, OutputInterface $output) |
||
51 | } |
||
52 |