Passed
Pull Request — master (#112)
by Théo
02:25
created
src/Console/Command/Info.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -411,7 +411,7 @@
 block discarded – undo
411 411
     private function retrieveCompressionCount($phar): array
412 412
     {
413 413
         $count = array_fill_keys(
414
-           self::ALGORITHMS,
414
+            self::ALGORITHMS,
415 415
             0
416 416
         );
417 417
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the box project.
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
             return $count;
422 422
         }
423 423
 
424
-        $countFile = function (array $count, PharFileInfo $file) {
424
+        $countFile = function(array $count, PharFileInfo $file) {
425 425
             if (false === $file->isCompressed()) {
426 426
                 ++$count['None'];
427 427
 
Please login to merge, or discard this patch.