Skip to content

Commit

Permalink
Declare return types to be compatible with composer 2.7+
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek authored Feb 9, 2024
1 parent a39d2e8 commit 71a5a1a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function setApplication(Application $application = null)
*
* @return void
*/
protected function configure()
protected function configure(): void
{
parent::configure();

Expand Down Expand Up @@ -170,7 +170,7 @@ protected function configure()
*
* @throws Exception
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$this->console = new Console($this->getIO(), $input->getOption(self::INTERACTIVE_OPT));
$this->pkgUtils = new PackageUtils($this->console);
Expand Down

0 comments on commit 71a5a1a

Please sign in to comment.