@@ -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. |
@@ -61,8 +61,8 @@ discard block |
||
| 61 | 61 | $this->phar = $phar; |
| 62 | 62 | $this->file = $file; |
| 63 | 63 | |
| 64 | - $this->retrieveRelativeBasePath = function (): void {}; |
|
| 65 | - $this->mapFile = function (): void {}; |
|
| 64 | + $this->retrieveRelativeBasePath = function(): void {}; |
|
| 65 | + $this->mapFile = function(): void {}; |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | /** |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | { |
| 259 | 259 | return array_reduce( |
| 260 | 260 | $this->compactors, |
| 261 | - function (string $contents, Compactor $compactor) use ($file): string { |
|
| 261 | + function(string $contents, Compactor $compactor) use ($file): string { |
|
| 262 | 262 | return $compactor->compact($file, $contents); |
| 263 | 263 | }, |
| 264 | 264 | $contents |