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 324903f commit 7eedc62Copy full SHA for 7eedc62
src/Illuminate/Process/FakeInvokedProcess.php
@@ -296,12 +296,12 @@ public function waitUntil(?callable $output = null)
296
{
297
$shouldStop = false;
298
299
- $this->outputHandler = $output
+ $this->outputHandler = $output
300
? function ($type, $buffer) use ($output, &$shouldStop) {
301
$shouldStop = call_user_func($output, $type, $buffer);
302
- }
303
- : $this->outputHandler;
304
-
+ }
+ : $this->outputHandler;
+
305
if (! $this->outputHandler) {
306
$this->remainingRunIterations = 0;
307
0 commit comments