From 6a664dde4c2fb52644ba641175e50a278f98d0c5 Mon Sep 17 00:00:00 2001 From: Joop Schilder Date: Wed, 16 Jan 2019 17:42:02 +0100 Subject: [PATCH] Removed SIGKILL --- src/Asynchronous.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Asynchronous.php b/src/Asynchronous.php index c68bb55..3232a1f 100644 --- a/src/Asynchronous.php +++ b/src/Asynchronous.php @@ -268,7 +268,7 @@ class Asynchronous /* * The signal handler */ - foreach ([SIGINT, SIGKILL, SIGTERM] as $signal) + foreach ([SIGINT, SIGTERM] as $signal) pcntl_signal($signal, function ($signal) use (&$instance) { if ($instance->isChild) return;