Passed
Push — master ( 173a0c...14edb3 )
by Vitaly
19:05 queued 09:05
created
src/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -442,7 +442,7 @@
 block discarded – undo
442 442
     {
443 443
         /** @var string $sizeLetters Size shortcuts */
444 444
         $sizeLetters = 'BKBMBGBTBPB';
445
-        $factor = (int)(floor((strlen($bytes) - 1) / 3));
445
+        $factor = (int) (floor((strlen($bytes) - 1) / 3));
446 446
         $sizeLetter = ($factor <= 0) ? substr($sizeLetters, 0, 1) : substr($sizeLetters, $factor * 2 - 1, 2);
447 447
         return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . $sizeLetter;
448 448
     }
Please login to merge, or discard this patch.
phpunit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  */
6 6
 
7 7
 /** Set composer autoloader */
8
-require __DIR__.'/vendor/autoload.php';
8
+require __DIR__ . '/vendor/autoload.php';
9 9
 
10 10
 /** Set The Default Timezone */
11 11
 date_default_timezone_set('UTC');
Please login to merge, or discard this patch.