@@ -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. |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | private static function dumpCheckScript(string ...$files): array |
112 | 112 | { |
113 | 113 | $autoloads = array_map( |
114 | - function (string $file): string { |
|
114 | + function(string $file): string { |
|
115 | 115 | return sprintf( |
116 | 116 | 'require_once __DIR__."/%s";', |
117 | 117 | $file |
@@ -146,7 +146,7 @@ |
||
146 | 146 | * |
147 | 147 | * @return bool |
148 | 148 | */ |
149 | - function ($checkPassed, Requirement $requirement) { |
|
149 | + function($checkPassed, Requirement $requirement) { |
|
150 | 150 | return $checkPassed && $requirement->isFulfilled(); |
151 | 151 | }, |
152 | 152 | true |
@@ -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. |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | private static function exportRequirementsIntoConfig(RequirementCollection $requirements): array |
142 | 142 | { |
143 | 143 | return array_map( |
144 | - function (Requirement $requirement): array { |
|
144 | + function(Requirement $requirement): array { |
|
145 | 145 | return [ |
146 | 146 | $requirement->getIsFullfilledChecker(), |
147 | 147 | $requirement->getTestMessage(), |
@@ -1,6 +1,6 @@ |
||
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. |
@@ -1,6 +1,6 @@ |
||
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. |
@@ -1,6 +1,6 @@ |
||
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. |
@@ -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 | }, |
@@ -326,9 +326,9 @@ discard block |
||
326 | 326 | $mapFile = $this->mapFile; |
327 | 327 | $placeholders = $this->placeholders; |
328 | 328 | $compactors = $this->compactors; |
329 | - $bootstrap = $GLOBALS['bootstrap'] ?? function (): void {}; |
|
329 | + $bootstrap = $GLOBALS['bootstrap'] ?? function(): void {}; |
|
330 | 330 | |
331 | - $processFile = function (string $file) use ($cwd, $basePath, $mapFile, $placeholders, $compactors, $bootstrap): array { |
|
331 | + $processFile = function(string $file) use ($cwd, $basePath, $mapFile, $placeholders, $compactors, $bootstrap): array { |
|
332 | 332 | chdir($cwd); |
333 | 333 | $bootstrap(); |
334 | 334 | |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | { |
378 | 378 | return array_reduce( |
379 | 379 | $compactors, |
380 | - function (string $contents, Compactor $compactor) use ($file): string { |
|
380 | + function(string $contents, Compactor $compactor) use ($file): string { |
|
381 | 381 | return $compactor->compact($file, $contents); |
382 | 382 | }, |
383 | 383 | $contents |
@@ -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. |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | return array_filter( |
59 | 59 | array_map( |
60 | - function (string $packageName) use ($vendorDir): ?string { |
|
60 | + function(string $packageName) use ($vendorDir): ?string { |
|
61 | 61 | $realPath = realpath($vendorDir.DIRECTORY_SEPARATOR.$packageName); |
62 | 62 | |
63 | 63 | return false !== $realPath ? $realPath : null; |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | } |
91 | 91 | |
92 | 92 | return array_map( |
93 | - function (array $package): string { |
|
93 | + function(array $package): string { |
|
94 | 94 | return $package['name']; |
95 | 95 | }, |
96 | 96 | $composerLockDecodedContents['packages-dev'] |
@@ -46,7 +46,7 @@ |
||
46 | 46 | $this->fulfilled = eval($this->checkIsFulfilled); |
47 | 47 | } |
48 | 48 | |
49 | - return (bool) $this->fulfilled; // Cast to boolean, `(bool)` and `boolval()` are not available in PHP 5.3 |
|
49 | + return (bool) $this->fulfilled; // Cast to boolean, `(bool)` and `boolval()` are not available in PHP 5.3 |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |