We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5dd49 commit ccf0a50Copy full SHA for ccf0a50
1 file changed
bin/bref-dev-server
@@ -22,7 +22,7 @@ $app->command('run [-a|--assets=]', function (OutputInterface $output, ?string $
22
$output->writeln("<info>Serving PHP from serverless.yml routes</info>");
23
$output->writeln("<info>Serving assets from $assetsDirectory/</info>");
24
25
- $server = new Process(['php', '-S', '127.0.0.1:8000', $handler, '-t', $assetsDirectory]);
+ $server = new Process(['php', '-S', '127.0.0.1:8000', '-t', $assetsDirectory, $handler]);
26
$server->setTimeout(null);
27
$server->setTty(true);
28
$server->setEnv([
0 commit comments