Skip to content

Commit 7b40eec

Browse files
committed
bug #1007 fix compatibility with Symfony 7 (shyim)
This PR was merged into the 1.x branch. Discussion ---------- fix compatibility with Symfony 7 fix for 1.x #1006 Commits ------- 77e7ba3 fix compatibility with Symfony 7
2 parents f96b8bf + 77e7ba3 commit 7b40eec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Command/RecipesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected function configure()
5555
;
5656
}
5757

58-
protected function execute(InputInterface $input, OutputInterface $output)
58+
protected function execute(InputInterface $input, OutputInterface $output): int
5959
{
6060
$installedRepo = $this->getComposer()->getRepositoryManager()->getLocalRepository();
6161

src/Command/UnpackCommand.php

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

52-
protected function execute(InputInterface $input, OutputInterface $output)
52+
protected function execute(InputInterface $input, OutputInterface $output): int
5353
{
5454
$composer = $this->getComposer();
5555
$packages = $this->resolver->resolve($input->getArgument('packages'), true);

0 commit comments

Comments
 (0)