Skip to content

Commit cc975e9

Browse files
committed
Fix CS
1 parent b0a8a5e commit cc975e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Model/Table/QueueProcessesTable.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,10 @@ public function terminateProcess(string $pid, int $sig = 0): void {
296296
}
297297

298298
// In the Windows operating system the SIGTERM constant is not defined
299-
if (!$sig && defined('SIGTERM')) {
300-
$sig = \SIGTERM;
301-
}
302-
299+
if (!$sig && defined('SIGTERM')) {
300+
$sig = \SIGTERM;
301+
}
302+
303303
$killed = false;
304304
if (function_exists('posix_kill')) {
305305
$killed = posix_kill((int)$pid, $sig);

0 commit comments

Comments
 (0)