From 78cbc2b6ced70d010900aeb781f8bb2f1958fb43 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 28 Mar 2019 13:30:36 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- Blacklight/libraries/Forking.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Blacklight/libraries/Forking.php b/Blacklight/libraries/Forking.php index ed59fccd6..e1d6dd2c6 100755 --- a/Blacklight/libraries/Forking.php +++ b/Blacklight/libraries/Forking.php @@ -657,7 +657,7 @@ class Forking })->catch(function (\Throwable $exception) { // Handle exception }); - --$count; + $count--; } elseif ($type !== '' && $type === 'pp_additional ') { $pid = $pool->add(function () use ($group, $type) { $this->_executeCommand($this->dnr_path.$type.$group->id.(isset($group->renamed) ? (' '.$group->renamed) : '').'"'); @@ -666,7 +666,7 @@ class Forking })->catch(function (\Throwable $exception) { // Handle exception }); - --$count; + $count--; $this->exit($pid->getPid()); $pool->wait(); }