Skip to content

Commit

Permalink
Merge pull request #8 from Cryental/master
Browse files Browse the repository at this point in the history
Bug fixes for Lumen 8.x
  • Loading branch information
mlntn authored Jun 4, 2021
2 parents 554c5ce + 86e621d commit 3cfa818
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Serve.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function handle() {
}
}
else {
passthru("{$binary} -S {$host}:{$port} -t '{$docroot}' {$base}/server.php");
passthru("{$binary} -S {$host}:{$port} -t {$docroot} {$base}/server.php");
}
}

Expand All @@ -69,5 +69,4 @@ protected function getOptions() {
['port', null, InputOption::VALUE_OPTIONAL, 'The port to serve the application on.', 8000],
];
}

}

0 comments on commit 3cfa818

Please sign in to comment.