Skip to content

Commit

Permalink
Merge pull request #15 from SlimGee/master
Browse files Browse the repository at this point in the history
thank you
  • Loading branch information
bangnokia authored Jan 3, 2023
2 parents 95a68b2 + 1ee1b5f commit 3b5300d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/ServeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function handle()
$artisanPath = base_path('artisan');

$processes = [
$httpProcess = new Process([$phpBinaryPath, $artisanPath, 'serve:http'] + $this->serveOptions()),
$httpProcess = new Process(array_merge([$phpBinaryPath, $artisanPath, 'serve:http'], $this->serveOptions())),
$socketProcess = new Process([$phpBinaryPath, $artisanPath, 'serve:websockets']),
];

Expand Down

0 comments on commit 3b5300d

Please sign in to comment.