Skip to content

Commit c72ae32

Browse files
authored
Merge pull request #214 from magento-gl/AC-15170
AC-15170:: Add official support for Symfony 7.4 LTS in Adobe Commerce 2.4.9
2 parents cb43e8a + 15f8a98 commit c72ae32

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ReCaptchaUser/Command/DisableReCaptchaForUserForgotPasswordCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected function configure()
4646
* @inheritdoc
4747
* @SuppressWarnings("PHPMD.UnusedFormalParameter")
4848
*/
49-
protected function execute(InputInterface $input, OutputInterface $output)
49+
protected function execute(InputInterface $input, OutputInterface $output): int
5050
{
5151
$this->disableReCaptchaForUserForgotPassword->execute();
5252

ReCaptchaUser/Command/DisableReCaptchaForUserLoginCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected function configure()
4646
* @inheritdoc
4747
* @SuppressWarnings("PHPMD.UnusedFormalParameter")
4848
*/
49-
protected function execute(InputInterface $input, OutputInterface $output)
49+
protected function execute(InputInterface $input, OutputInterface $output): int
5050
{
5151
$this->disableReCaptchaForUserLogin->execute();
5252

TwoFactorAuth/Command/GoogleSecret.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ protected function configure()
8484
* @param OutputInterface $output
8585
* @throws LocalizedException
8686
*/
87-
protected function execute(InputInterface $input, OutputInterface $output)
87+
protected function execute(InputInterface $input, OutputInterface $output): int
8888
{
8989
$userName = $input->getArgument('user');
9090
$secret = $input->getArgument('secret');

TwoFactorAuth/Command/TfaProviders.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected function configure()
4949
*
5050
* @SuppressWarnings("PHPMD.UnusedFormalParameter")
5151
*/
52-
protected function execute(InputInterface $input, OutputInterface $output)
52+
protected function execute(InputInterface $input, OutputInterface $output): int
5353
{
5454
$providers = $this->providerPool->getProviders();
5555

TwoFactorAuth/Command/TfaReset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ protected function configure()
8282
* @SuppressWarnings("PHPMD.UnusedFormalParameter")
8383
* @throws LocalizedException
8484
*/
85-
protected function execute(InputInterface $input, OutputInterface $output)
85+
protected function execute(InputInterface $input, OutputInterface $output): int
8686
{
8787
$userName = $input->getArgument('user');
8888
$providerCode = $input->getArgument('provider');

0 commit comments

Comments
 (0)