Skip to content

Commit

Permalink
Merge pull request #3 from PhpGt/php-7.4
Browse files Browse the repository at this point in the history
Add missing splat operator
  • Loading branch information
g105b authored Jan 3, 2020
2 parents c14b75f + 92cc4e5 commit b783ab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/StartCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function run(ArgumentValueList $arguments = null):void {

$cmd = ["php", "-S", "$bind:$port", "-t", $docRoot, $goPath];
$this->writeLine("Executing: " . implode(" ", $cmd));
$process = new Process($cmd);
$process = new Process(...$cmd);
$process->exec();

do {
Expand Down

0 comments on commit b783ab4

Please sign in to comment.