]> git.mxchange.org Git - friendica.git/commitdiff
resolve double used variable name
authorArt4 <art4@wlabs.de>
Thu, 26 Dec 2024 10:38:10 +0000 (10:38 +0000)
committerArt4 <art4@wlabs.de>
Thu, 26 Dec 2024 10:38:10 +0000 (10:38 +0000)
src/App.php

index 95417b7ed5b637627e4bb60e0c55a326d746452c..ad7b2c330de3bf1c837ec8363c1d3f1d4c86efa1 100644 (file)
@@ -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);