Skip to content

Commit cf10b3b

Browse files
committed
Formatted.
1 parent 3b622e1 commit cf10b3b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/classes/Artisan/Command.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ public function runInBackground()
3232
protected function composeForRunInBackground()
3333
{
3434
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
35-
return 'start /B ' . $this->composeForRun();
35+
return "start /B {$this->composeForRun()}";
3636
}
37+
3738
return "({$this->composeForRun()}) > /dev/null 2>&1 &";
3839
}
3940

0 commit comments

Comments
 (0)