From 3ec55ae42d928b6bfa0d1b457d1f14220844bbef Mon Sep 17 00:00:00 2001 From: nlighteneddesign Date: Mon, 30 Sep 2024 16:09:51 -0400 Subject: [PATCH] Add return type required by Symfony --- src/Console/VendorExposeCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/VendorExposeCommand.php b/src/Console/VendorExposeCommand.php index c1e5c92..c70b8e4 100644 --- a/src/Console/VendorExposeCommand.php +++ b/src/Console/VendorExposeCommand.php @@ -33,7 +33,7 @@ public function configure() $this->setHelp('This command will update all resources for all installed modules using the given method'); } - public function execute(InputInterface $input, OutputInterface $output) + public function execute(InputInterface $input, OutputInterface $output): int { $io = new ConsoleIO($input, $output, $this->getHelperSet());