@@ -1231,7 +1231,7 @@ |
||
1231 | 1231 | return file_exists($configFilePath) |
1232 | 1232 | ? PhpScoperConfiguration::load($configFilePath) |
1233 | 1233 | : PhpScoperConfiguration::load() |
1234 | - ; |
|
1234 | + ; |
|
1235 | 1235 | } |
1236 | 1236 | |
1237 | 1237 | $configFile = $raw->phpScoper; |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | { |
566 | 566 | $blacklist = self::retrieveBlacklist($raw, $basePath, ...$excludedPaths); |
567 | 567 | |
568 | - $blacklistFilter = function (SplFileInfo $file) use ($blacklist): ?bool { |
|
568 | + $blacklistFilter = function(SplFileInfo $file) use ($blacklist): ?bool { |
|
569 | 569 | if ($file->isLink()) { |
570 | 570 | return false; |
571 | 571 | } |
@@ -629,7 +629,7 @@ discard block |
||
629 | 629 | |
630 | 630 | Assertion::allString($files); |
631 | 631 | |
632 | - $normalizePath = function (string $file) use ($basePath, $key): SplFileInfo { |
|
632 | + $normalizePath = function(string $file) use ($basePath, $key): SplFileInfo { |
|
633 | 633 | $file = self::normalizePath($file, $basePath); |
634 | 634 | |
635 | 635 | if (is_link($file)) { |
@@ -747,7 +747,7 @@ discard block |
||
747 | 747 | Closure $blacklistFilter, |
748 | 748 | array $devPackages |
749 | 749 | ): array { |
750 | - $processFinderConfig = function (stdClass $config) use ($basePath, $blacklistFilter, $devPackages) { |
|
750 | + $processFinderConfig = function(stdClass $config) use ($basePath, $blacklistFilter, $devPackages) { |
|
751 | 751 | return self::processFinder($config, $basePath, $blacklistFilter, $devPackages); |
752 | 752 | }; |
753 | 753 | |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | ->files() |
773 | 773 | ->filter($blacklistFilter) |
774 | 774 | ->filter( |
775 | - function (SplFileInfo $fileInfo) use ($devPackages): bool { |
|
775 | + function(SplFileInfo $fileInfo) use ($devPackages): bool { |
|
776 | 776 | foreach ($devPackages as $devPackage) { |
777 | 777 | if ($devPackage === longest_common_base_path([$devPackage, $fileInfo->getRealPath()])) { |
778 | 778 | // File belongs to the dev package |
@@ -786,7 +786,7 @@ discard block |
||
786 | 786 | ->ignoreVCS(true) |
787 | 787 | ; |
788 | 788 | |
789 | - $normalizedConfig = (function (array $config, Finder $finder): array { |
|
789 | + $normalizedConfig = (function(array $config, Finder $finder): array { |
|
790 | 790 | $normalizedConfig = []; |
791 | 791 | |
792 | 792 | foreach ($config as $method => $arguments) { |
@@ -807,7 +807,7 @@ discard block |
||
807 | 807 | return $normalizedConfig; |
808 | 808 | })((array) $config, $finder); |
809 | 809 | |
810 | - $createNormalizedDirectories = function (string $directory) use ($basePath): ?string { |
|
810 | + $createNormalizedDirectories = function(string $directory) use ($basePath): ?string { |
|
811 | 811 | $directory = self::normalizePath($directory, $basePath); |
812 | 812 | |
813 | 813 | if (is_link($directory)) { |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | return $directory; |
826 | 826 | }; |
827 | 827 | |
828 | - $normalizeFileOrDirectory = function (string &$fileOrDirectory) use ($basePath): void { |
|
828 | + $normalizeFileOrDirectory = function(string &$fileOrDirectory) use ($basePath): void { |
|
829 | 829 | $fileOrDirectory = self::normalizePath($fileOrDirectory, $basePath); |
830 | 830 | |
831 | 831 | if (is_link($fileOrDirectory)) { |
@@ -894,7 +894,7 @@ discard block |
||
894 | 894 | ): array { |
895 | 895 | $excludedPaths = array_flip($excludedPaths); |
896 | 896 | |
897 | - $toString = function ($file): string { |
|
897 | + $toString = function($file): string { |
|
898 | 898 | // @param string|SplFileInfo $file |
899 | 899 | return (string) $file; |
900 | 900 | }; |
@@ -916,7 +916,7 @@ discard block |
||
916 | 916 | ->depth(1) |
917 | 917 | ->ignoreUnreadableDirs() |
918 | 918 | ->filter( |
919 | - function (SplFileInfo $fileInfo): ?bool { |
|
919 | + function(SplFileInfo $fileInfo): ?bool { |
|
920 | 920 | if ($fileInfo->isLink()) { |
921 | 921 | return false; |
922 | 922 | } |
@@ -990,7 +990,7 @@ discard block |
||
990 | 990 | } |
991 | 991 | } |
992 | 992 | |
993 | - $normalizePath = function (string $path) use ($basePath): string { |
|
993 | + $normalizePath = function(string $path) use ($basePath): string { |
|
994 | 994 | return is_absolute_path($path) |
995 | 995 | ? canonicalize($path) |
996 | 996 | : self::normalizePath(trim($path, '/ '), $basePath) |
@@ -1048,7 +1048,7 @@ discard block |
||
1048 | 1048 | array $devPackages |
1049 | 1049 | ): array { |
1050 | 1050 | $relativeDevPackages = array_map( |
1051 | - function (string $packagePath) use ($basePath): string { |
|
1051 | + function(string $packagePath) use ($basePath): string { |
|
1052 | 1052 | return make_path_relative($packagePath, $basePath); |
1053 | 1053 | }, |
1054 | 1054 | $devPackages |
@@ -1137,12 +1137,12 @@ discard block |
||
1137 | 1137 | $excludedPaths = array_unique( |
1138 | 1138 | array_filter( |
1139 | 1139 | array_map( |
1140 | - function (string $path) use ($basePath): string { |
|
1140 | + function(string $path) use ($basePath): string { |
|
1141 | 1141 | return make_path_relative($path, $basePath); |
1142 | 1142 | }, |
1143 | 1143 | $excludedPaths |
1144 | 1144 | ), |
1145 | - function (string $path): bool { |
|
1145 | + function(string $path): bool { |
|
1146 | 1146 | return '..' !== substr($path, 0, 2); |
1147 | 1147 | } |
1148 | 1148 | ) |
@@ -1177,7 +1177,7 @@ discard block |
||
1177 | 1177 | |
1178 | 1178 | $directories = $raw->{$key}; |
1179 | 1179 | |
1180 | - $normalizeDirectory = function (string $directory) use ($basePath, $key): string { |
|
1180 | + $normalizeDirectory = function(string $directory) use ($basePath, $key): string { |
|
1181 | 1181 | $directory = self::normalizePath($directory, $basePath); |
1182 | 1182 | |
1183 | 1183 | if (is_link($directory)) { |
@@ -1221,7 +1221,7 @@ discard block |
||
1221 | 1221 | $compactorClasses = array_unique((array) $raw->compactors); |
1222 | 1222 | |
1223 | 1223 | return array_map( |
1224 | - function (string $class) use ($raw, $basePath): Compactor { |
|
1224 | + function(string $class) use ($raw, $basePath): Compactor { |
|
1225 | 1225 | Assertion::classExists($class, 'The compactor class "%s" does not exist.'); |
1226 | 1226 | Assertion::implementsInterface($class, Compactor::class, 'The class "%s" is not a compactor class.'); |
1227 | 1227 | |
@@ -1311,7 +1311,7 @@ discard block |
||
1311 | 1311 | |
1312 | 1312 | private static function retrieveComposerFiles(string $basePath): array |
1313 | 1313 | { |
1314 | - $retrieveFileAndContents = function (string $file): array { |
|
1314 | + $retrieveFileAndContents = function(string $file): array { |
|
1315 | 1315 | $json = new Json(); |
1316 | 1316 | |
1317 | 1317 | if (false === file_exists($file) || false === is_file($file) || false === is_readable($file)) { |
@@ -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 |
@@ -424,7 +424,7 @@ |
||
424 | 424 | return $count; |
425 | 425 | } |
426 | 426 | |
427 | - $countFile = function (array $count, PharFileInfo $file) { |
|
427 | + $countFile = function(array $count, PharFileInfo $file) { |
|
428 | 428 | if (false === $file->isCompressed()) { |
429 | 429 | ++$count['None']; |
430 | 430 |
@@ -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 |
@@ -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 | /** |
@@ -18,12 +18,12 @@ discard block |
||
18 | 18 | |
19 | 19 | return [ |
20 | 20 | 'patchers' => [ |
21 | - function (string $filePath, string $prefix, string $contents): string { |
|
21 | + function(string $filePath, string $prefix, string $contents): string { |
|
22 | 22 | $finderClass = sprintf('\%s\%s', $prefix, Finder::class); |
23 | 23 | |
24 | 24 | return str_replace($finderClass, '\\'.Finder::class, $contents); |
25 | 25 | }, |
26 | - function (string $filePath, string $prefix, string $contents): string { |
|
26 | + function(string $filePath, string $prefix, string $contents): string { |
|
27 | 27 | $file = 'vendor/beberlei/assert/lib/Assert/Assertion.php'; |
28 | 28 | |
29 | 29 | if ($filePath !== $file) { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $contents |
40 | 40 | ); |
41 | 41 | }, |
42 | - function (string $filePath, string $prefix, string $contents): string { |
|
42 | + function(string $filePath, string $prefix, string $contents): string { |
|
43 | 43 | $files = [ |
44 | 44 | 'src/functions.php', |
45 | 45 | 'src/Configuration.php', |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $contents |
68 | 68 | ); |
69 | 69 | }, |
70 | - function (string $filePath, string $prefix, string $contents): string { |
|
70 | + function(string $filePath, string $prefix, string $contents): string { |
|
71 | 71 | if ('vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php' !== $filePath) { |
72 | 72 | return $contents; |
73 | 73 | } |
@@ -81,10 +81,10 @@ discard block |
||
81 | 81 | $contents |
82 | 82 | ); |
83 | 83 | }, |
84 | - function (string $filePath, string $prefix, string $contents) use ($classLoaderContents): string { |
|
84 | + function(string $filePath, string $prefix, string $contents) use ($classLoaderContents): string { |
|
85 | 85 | return 'vendor/composer/composer/src/Composer/Autoload/ClassLoader.php' === $filePath ? $classLoaderContents : $contents; |
86 | 86 | }, |
87 | - function (string $filePath, string $prefix, string $contents): string { |
|
87 | + function(string $filePath, string $prefix, string $contents): string { |
|
88 | 88 | if ('src/bootstrap.php' !== $filePath) { |
89 | 89 | return $contents; |
90 | 90 | } |
@@ -98,7 +98,7 @@ |
||
98 | 98 | ); |
99 | 99 | |
100 | 100 | $this->assertFalse($requirement->isFulfilled()); |
101 | - $this->assertFalse($requirement->isFulfilled()); // Would have gave `true` if it was evaluated a second time |
|
101 | + $this->assertFalse($requirement->isFulfilled()); // Would have gave `true` if it was evaluated a second time |
|
102 | 102 | |
103 | 103 | unset($GLOBALS['x']); |
104 | 104 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | { |
64 | 64 | $phpVersion = PHP_VERSION; |
65 | 65 | |
66 | - yield (function () use ($phpVersion) { |
|
66 | + yield (function() use ($phpVersion) { |
|
67 | 67 | return [ |
68 | 68 | new RequirementCollection(), |
69 | 69 | IO::VERBOSITY_DEBUG, |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | ]; |
89 | 89 | })(); |
90 | 90 | |
91 | - yield (function () use ($phpVersion) { |
|
91 | + yield (function() use ($phpVersion) { |
|
92 | 92 | return [ |
93 | 93 | new RequirementCollection(), |
94 | 94 | IO::VERBOSITY_VERY_VERBOSE, |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | })(); |
115 | 115 | |
116 | 116 | foreach ([IO::VERBOSITY_VERBOSE, IO::VERBOSITY_NORMAL, IO::VERBOSITY_QUIET] as $verbosity) { |
117 | - yield (function () use ($verbosity) { |
|
117 | + yield (function() use ($verbosity) { |
|
118 | 118 | return [ |
119 | 119 | new RequirementCollection(), |
120 | 120 | $verbosity, |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | })(); |
125 | 125 | } |
126 | 126 | |
127 | - yield (function () use ($phpVersion) { |
|
127 | + yield (function() use ($phpVersion) { |
|
128 | 128 | $requirements = new RequirementCollection(); |
129 | 129 | |
130 | 130 | $requirements->addRequirement( |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | ]; |
165 | 165 | })(); |
166 | 166 | |
167 | - yield (function () use ($phpVersion) { |
|
167 | + yield (function() use ($phpVersion) { |
|
168 | 168 | $requirements = new RequirementCollection(); |
169 | 169 | |
170 | 170 | $requirements->addRequirement( |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | })(); |
205 | 205 | |
206 | 206 | foreach ([IO::VERBOSITY_VERBOSE, IO::VERBOSITY_NORMAL, IO::VERBOSITY_QUIET] as $verbosity) { |
207 | - yield (function () use ($verbosity) { |
|
207 | + yield (function() use ($verbosity) { |
|
208 | 208 | $requirements = new RequirementCollection(); |
209 | 209 | |
210 | 210 | $requirements->addRequirement( |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | })(); |
228 | 228 | } |
229 | 229 | |
230 | - yield (function () use ($phpVersion) { |
|
230 | + yield (function() use ($phpVersion) { |
|
231 | 231 | $requirements = new RequirementCollection(); |
232 | 232 | |
233 | 233 | $requirements->addRequirement( |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | })(); |
276 | 276 | |
277 | 277 | foreach ([IO::VERBOSITY_VERY_VERBOSE, IO::VERBOSITY_VERBOSE, IO::VERBOSITY_NORMAL] as $verbosity) { |
278 | - yield (function () use ($verbosity, $phpVersion) { |
|
278 | + yield (function() use ($verbosity, $phpVersion) { |
|
279 | 279 | $requirements = new RequirementCollection(); |
280 | 280 | |
281 | 281 | $requirements->addRequirement( |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | })(); |
322 | 322 | } |
323 | 323 | |
324 | - yield (function () use ($phpVersion) { |
|
324 | + yield (function() use ($phpVersion) { |
|
325 | 325 | $requirements = new RequirementCollection(); |
326 | 326 | |
327 | 327 | $requirements->addRequirement( |
@@ -324,7 +324,7 @@ |
||
324 | 324 | 'Registering compactors' |
325 | 325 | ); |
326 | 326 | |
327 | - $logCompactors = function (Compactor $compactor) use ($logger): void { |
|
327 | + $logCompactors = function(Compactor $compactor) use ($logger): void { |
|
328 | 328 | $compactorClassParts = explode('\\', get_class($compactor)); |
329 | 329 | |
330 | 330 | if ('_HumbugBox' === substr($compactorClassParts[0], 0, strlen('_HumbugBox'))) { |
@@ -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'] |