WIP: Symfony 6 project remake #2

Draft
skobkin wants to merge 103 commits from symfony6_remake into master
4 changed files with 4 additions and 4 deletions
Showing only changes of commit fc8b8e04e3 - Show all commits

View file

@ -21,7 +21,7 @@ class TelegramSendMessageCommand extends Command
parent::__construct(); parent::__construct();
} }
protected function configure() protected function configure(): void
{ {
$this $this
->addOption('chat-id', 'c', InputOption::VALUE_OPTIONAL, 'ID of the chat') ->addOption('chat-id', 'c', InputOption::VALUE_OPTIONAL, 'ID of the chat')

View file

@ -28,7 +28,7 @@ class TelegramWebhookCommand extends Command
parent::__construct(); parent::__construct();
} }
protected function configure() protected function configure(): void
{ {
$this $this
->addArgument('mode', InputArgument::REQUIRED, 'Command mode (set or delete)') ->addArgument('mode', InputArgument::REQUIRED, 'Command mode (set or delete)')

View file

@ -32,7 +32,7 @@ class UpdateSubscriptionsCommand extends Command
parent::__construct(); parent::__construct();
} }
protected function configure() protected function configure(): void
{ {
$this $this
->addOption( ->addOption(

View file

@ -32,7 +32,7 @@ class UpdateUsersPrivacyCommand extends Command
parent::__construct(); parent::__construct();
} }
protected function configure() protected function configure(): void
{ {
$this $this
->addOption( ->addOption(