diff --git a/CHANGELOG.md b/CHANGELOG.md index 77fb4600..bb7e6f38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ Changelog Version 1 ========= +1.4.6 +----- + +* Revert BC break with the command return type declarations. + 1.4.5 ----- diff --git a/src/Jackalope/Tools/Console/Command/JackrabbitCommand.php b/src/Jackalope/Tools/Console/Command/JackrabbitCommand.php index 687e9483..85f2b234 100644 --- a/src/Jackalope/Tools/Console/Command/JackrabbitCommand.php +++ b/src/Jackalope/Tools/Console/Command/JackrabbitCommand.php @@ -37,7 +37,7 @@ class JackrabbitCommand extends Command */ protected $port; - protected function configure(): void + protected function configure() { $this->setName('jackalope:run:jackrabbit') ->addArgument('cmd', InputArgument::REQUIRED, 'Command to execute (start | stop | status)') @@ -71,7 +71,7 @@ protected function setPort($port): void $this->port = $port; } - protected function execute(InputInterface $input, OutputInterface $output): int + protected function execute(InputInterface $input, OutputInterface $output) { $cmd = $input->getArgument('cmd');