Skip to content

Commit 96712ba

Browse files
authored
Fix PHP_CLI_SERVER_WORKERS warning by applying the same fix as 11.x (#52094)
1 parent e052cb8 commit 96712ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Foundation/Console/ServeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ protected function handleProcessOutput()
295295

296296
$this->output->write(' '.str_repeat('<fg=gray>.</>', $dots));
297297
$this->output->writeln(" <fg=gray>~ {$runTime}s</>");
298-
} elseif (str($line)->contains(['Closed without sending a request'])) {
298+
} elseif (str($line)->contains(['Closed without sending a request', 'Failed to poll event'])) {
299299
// ...
300300
} elseif (! empty($line)) {
301301
$position = strpos($line, '] ');

0 commit comments

Comments
 (0)