From 3cd9bcb25dbfb4e70c9b96dd5b9c2ce109583217 Mon Sep 17 00:00:00 2001 From: ChristopheBorcard <82796229+ChristopheBorcard@users.noreply.github.com> Date: Wed, 12 Jul 2023 20:55:08 +0200 Subject: [PATCH] We dont want Symfony to catch pcntl signal (#47725) --- src/Illuminate/Foundation/Console/Kernel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Illuminate/Foundation/Console/Kernel.php b/src/Illuminate/Foundation/Console/Kernel.php index 447b861a57f1..227f7caea513 100644 --- a/src/Illuminate/Foundation/Console/Kernel.php +++ b/src/Illuminate/Foundation/Console/Kernel.php @@ -484,6 +484,7 @@ protected function getArtisan() if ($this->symfonyDispatcher instanceof EventDispatcher) { $this->artisan->setDispatcher($this->symfonyDispatcher); + $this->artisan->setSignalsToDispatchEvent(); } }