Skip to content

Commit 6ba61e9

Browse files
committed
Correct return type declaration
1 parent a3faa20 commit 6ba61e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Console/Command/CleanUpAttributesAndValuesWithoutParentCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected function configure()
4646
->addOption('force');
4747
}
4848

49-
public function execute(InputInterface $input, OutputInterface $output)
49+
public function execute(InputInterface $input, OutputInterface $output): int
5050
{
5151
$isDryRun = $input->getOption('dry-run');
5252
$isForce = $input->getOption('force');

Console/Command/RemoveUnusedAttributesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected function configure()
4949
->addOption('force');
5050
}
5151

52-
public function execute(InputInterface $input, OutputInterface $output)
52+
public function execute(InputInterface $input, OutputInterface $output): int
5353
{
5454
$isDryRun = $input->getOption('dry-run');
5555
$isForce = $input->getOption('force');

0 commit comments

Comments
 (0)