Passed
Push — master ( 856100...c79340 )
by Alexander
02:53
created
src/util/Cli.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
      */
219 219
     protected function progressBar(int $counter, int $total): void
220 220
     {
221
-        $length = (int) ( ($counter/$total) * 100 );
221
+        $length = (int) (($counter / $total) * 100);
222 222
         $active = ($counter === $total) ? '' : '>';
223 223
         $loadbar = sprintf(
224 224
             "\r[%-100s] %d%% (%s/%s)",
Please login to merge, or discard this patch.