Skip to content

Commit 3a885ba

Browse files
authored
Merge pull request #160 from geichelberger/fix-symfony-process
fix symfony/process signaling issue
2 parents b88bd4c + e7cd729 commit 3a885ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/BehatCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ private function startServerProcesses(InputInterface $input)
146146
}
147147

148148
// Start web server.
149-
$web = new Process('php -S localhost:8000', $this->moodle->directory);
149+
$web = new Process(['php', '-S', 'localhost:8000'], $this->moodle->directory);
150150
$web->setTimeout(0);
151151
$web->disableOutput();
152152
$web->start();

0 commit comments

Comments
 (0)