@@ -411,7 +411,7 @@ |
||
| 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 | |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 | |