Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.x' into 1-to-2
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Nov 14, 2023
2 parents a2f73bf + 737de4e commit c9b3430
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Version 2
Version 1
=========

1.4.6
-----

* Revert BC break with the command return type declarations.

1.4.5
-----

Expand Down
4 changes: 2 additions & 2 deletions src/Jackalope/Tools/Console/Command/JackrabbitCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class JackrabbitCommand extends Command
*/
private int $port;

protected function configure(): void
protected function configure()
{
$this->setName('jackalope:run:jackrabbit')
->addArgument('cmd', InputArgument::REQUIRED, 'Command to execute (start | stop | status)')
Expand Down Expand Up @@ -65,7 +65,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');

Expand Down

0 comments on commit c9b3430

Please sign in to comment.