@@ -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. |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | use RuntimeException; |
| 21 | 21 | use function substr; |
| 22 | 22 | |
| 23 | -$findAutoloader = function () { |
|
| 23 | +$findAutoloader = function() { |
|
| 24 | 24 | if (file_exists($autoload = __DIR__.'/../../../autoload.php')) { |
| 25 | 25 | // Is installed via Composer |
| 26 | 26 | return $autoload; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | }; |
| 43 | 43 | |
| 44 | 44 | // TODO: update PHP-Scoper to get rid of this horrible hack at some point |
| 45 | -$findPhpScoperFunctions = function () { |
|
| 45 | +$findPhpScoperFunctions = function() { |
|
| 46 | 46 | if (file_exists($autoload = __DIR__.'/../../php-scoper/src/functions.php')) { |
| 47 | 47 | // Is installed via Composer |
| 48 | 48 | return $autoload; |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | throw new RuntimeException('Unable to find the PHP-Scoper functions.'); |
| 64 | 64 | }; |
| 65 | 65 | |
| 66 | -$bootstrap = function () use ($findAutoloader, $findPhpScoperFunctions): void { |
|
| 66 | +$bootstrap = function() use ($findAutoloader, $findPhpScoperFunctions): void { |
|
| 67 | 67 | require_once $findAutoloader(); |
| 68 | 68 | require_once $findPhpScoperFunctions(); |
| 69 | 69 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | // Convert errors to exceptions |
| 77 | 77 | set_error_handler( |
| 78 | - function ($code, $message, $file, $line): void { |
|
| 78 | + function($code, $message, $file, $line): void { |
|
| 79 | 79 | if (error_reporting() & $code) { |
| 80 | 80 | throw new ErrorException($message, 0, $code, $file, $line); |
| 81 | 81 | } |
@@ -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. |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | $this->file = $file; |
| 85 | 85 | |
| 86 | 86 | $this->basePath = getcwd(); |
| 87 | - $this->mapFile = function (): void { }; |
|
| 87 | + $this->mapFile = function(): void { }; |
|
| 88 | 88 | $this->scoper = new NullScoper(); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | public function addFiles(array $files, bool $binary, bool $dumpAutoload = false): void |
| 171 | 171 | { |
| 172 | 172 | $files = array_map( |
| 173 | - function ($file): string { |
|
| 173 | + function($file): string { |
|
| 174 | 174 | // Convert files to string as SplFileInfo is not serializable |
| 175 | 175 | return (string) $file; |
| 176 | 176 | }, |
@@ -314,9 +314,9 @@ discard block |
||
| 314 | 314 | $mapFile = $this->mapFile; |
| 315 | 315 | $placeholders = $this->placeholders; |
| 316 | 316 | $compactors = $this->compactors; |
| 317 | - $bootstrap = $GLOBALS['_BOX_BOOTSTRAP'] ?? function (): void {}; |
|
| 317 | + $bootstrap = $GLOBALS['_BOX_BOOTSTRAP'] ?? function(): void {}; |
|
| 318 | 318 | |
| 319 | - $processFile = function (string $file) use ($cwd, $basePath, $mapFile, $placeholders, $compactors, $bootstrap): array { |
|
| 319 | + $processFile = function(string $file) use ($cwd, $basePath, $mapFile, $placeholders, $compactors, $bootstrap): array { |
|
| 320 | 320 | chdir($cwd); |
| 321 | 321 | $bootstrap(); |
| 322 | 322 | |
@@ -365,7 +365,7 @@ discard block |
||
| 365 | 365 | { |
| 366 | 366 | return array_reduce( |
| 367 | 367 | $compactors, |
| 368 | - function (string $contents, Compactor $compactor) use ($file): string { |
|
| 368 | + function(string $contents, Compactor $compactor) use ($file): string { |
|
| 369 | 369 | return $compactor->compact($file, $contents); |
| 370 | 370 | }, |
| 371 | 371 | $contents |