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 3b622e1 commit cf10b3bCopy full SHA for cf10b3b
src/classes/Artisan/Command.php
@@ -32,8 +32,9 @@ public function runInBackground()
32
protected function composeForRunInBackground()
33
{
34
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
35
- return 'start /B ' . $this->composeForRun();
+ return "start /B {$this->composeForRun()}";
36
}
37
+
38
return "({$this->composeForRun()}) > /dev/null 2>&1 &";
39
40
0 commit comments