Skip to content

Commit

Permalink
make adminPort always > 0
Browse files Browse the repository at this point in the history
  • Loading branch information
vikas5914 authored Dec 21, 2023
1 parent 08e08ec commit d3a0897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/StartFrankenPhpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ protected function adminPort()
{
$defaultPort = 2019;

return $defaultPort + ($this->getPort() - 8000);
return $defaultPort + ($this->getPort() + 8000);
}

/**
Expand Down

0 comments on commit d3a0897

Please sign in to comment.