Skip to content

Commit

Permalink
bug #1007 fix compatibility with Symfony 7 (shyim)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
fabpot committed Jan 2, 2024
2 parents f96b8bf + 77e7ba3 commit 7b40eec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Command/RecipesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected function configure()
;
}

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

Expand Down
2 changes: 1 addition & 1 deletion src/Command/UnpackCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected function configure()
;
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$composer = $this->getComposer();
$packages = $this->resolver->resolve($input->getArgument('packages'), true);
Expand Down

0 comments on commit 7b40eec

Please sign in to comment.