From ecaa2b77b8e22ab8bc1c2e044fc5c43acfba58ef Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 10 Nov 2022 16:19:53 +0000 Subject: [PATCH] Apply fixes from StyleCI --- LibreNMS/Util/CiHelper.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LibreNMS/Util/CiHelper.php b/LibreNMS/Util/CiHelper.php index 81c85ac82f..f0722639da 100644 --- a/LibreNMS/Util/CiHelper.php +++ b/LibreNMS/Util/CiHelper.php @@ -394,15 +394,15 @@ class CiHelper if (Process::isTtySupported()) { $proc->setTty(true); - $proc->run(); + $proc->run(); } else { $proc->run(function ($type, $buffer) { echo $buffer; }); } } else { - $proc->run(); - } + $proc->run(); + } $duration = sprintf('%.2fs', microtime(true) - $start); if ($proc->getExitCode() > 0) {