From 972d89b02313ee862f630b29dc5abddf0f508411 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Fri, 6 Sep 2024 13:27:43 +0300 Subject: [PATCH] Added information message about the successful launch of an asynchronous task --- src/Services/Migrator.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Services/Migrator.php b/src/Services/Migrator.php index 0eb31c69..dfe74283 100644 --- a/src/Services/Migrator.php +++ b/src/Services/Migrator.php @@ -61,6 +61,8 @@ public function runUp(string $filename, int $batch, Options $options): void if ($this->hasAsync($operation, $options)) { OperationJob::dispatch($name); + $this->notification->twoColumn($name, 'PENDING'); + return; }