Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2022-11-10 11:28:09 +00:00
parent a89f152644
commit bd78c2be1a

View File

@ -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) {