Update composer to symfony 5 (without config)

This commit is contained in:
2023-09-03 15:24:50 +02:00
parent 91e6b035bd
commit 16a5745df9
3 changed files with 23 additions and 36 deletions

View File

@@ -27,12 +27,7 @@ class SendShortMessageOnEligibleCalendar extends Command
{
public function __construct(private readonly BulkCalendarShortMessageSender $messageSender)
{
parent::__construct();
}
public function getName()
{
return 'chill:calendar:send-short-messages';
parent::__construct('chill:calendar:send-short-messages');
}
protected function execute(InputInterface $input, OutputInterface $output): int

View File

@@ -47,12 +47,7 @@ class SendTestShortMessageOnCalendarCommand extends Command
private readonly ShortMessageTransporterInterface $transporter,
private readonly UserRepositoryInterface $userRepository
) {
parent::__construct();
}
public function getName()
{
return 'chill:calendar:test-send-short-message';
parent::__construct('chill:calendar:test-send-short-message');
}
protected function configure()