From f3703f433e3a7d9f2d028320e6e656c7280a6093 Mon Sep 17 00:00:00 2001 From: Art4 Date: Thu, 26 Dec 2024 10:38:10 +0000 Subject: [PATCH] resolve double used variable name --- src/App.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/App.php b/src/App.php index 95417b7ed5..ad7b2c330d 100644 --- a/src/App.php +++ b/src/App.php @@ -254,20 +254,20 @@ class App $pidfile = $config->get('system', 'pidfile'); if (in_array('start', $argv)) { - $mode = 'start'; + $daemonMode = 'start'; } if (in_array('stop', $argv)) { - $mode = 'stop'; + $daemonMode = 'stop'; } if (in_array('status', $argv)) { - $mode = 'status'; + $daemonMode = 'status'; } $foreground = array_key_exists('f', $options) || array_key_exists('foreground', $options); - if (!isset($mode)) { + if (!isset($daemonMode)) { die("Please use either 'start', 'stop' or 'status'.\n"); } @@ -281,12 +281,12 @@ class App $pid = intval(file_get_contents($pidfile)); } - if (empty($pid) && in_array($mode, ['stop', 'status'])) { + if (empty($pid) && in_array($daemonMode, ['stop', 'status'])) { DI::keyValue()->set('worker_daemon_mode', false); die("Pidfile wasn't found. Is the daemon running?\n"); } - if ($mode == 'status') { + if ($daemonMode == 'status') { if (posix_kill($pid, 0)) { die("Daemon process $pid is running.\n"); } @@ -297,7 +297,7 @@ class App die("Daemon process $pid isn't running.\n"); } - if ($mode == 'stop') { + if ($daemonMode == 'stop') { posix_kill($pid, SIGTERM); unlink($pidfile); -- 2.39.5