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 40943a7 commit 01ad845Copy full SHA for 01ad845
src/Console/RunCommand.php
@@ -80,14 +80,10 @@ protected function isPhpFile(string $path): bool
80
81
protected function restartAsyncRun(): self
82
{
83
- $this->components->info('Change detected! Restarting bot...');
+ $this->components->info('Changes detected! Restarting bot...');
84
85
$this->runProcess->stop();
86
- $this->runProcess->wait(function (string $type, string $output) {
87
- if(Process::isTtySupported() && !$this->option('without-tty')) {
88
- $this->output->write($output);
89
- }
90
- });
+ $this->runProcess->wait();
91
92
$this->startAsyncRun();
93
0 commit comments