@@ -39,7 +39,7 @@ |
||
39 | 39 | } |
40 | 40 | |
41 | 41 | return array_combine( |
42 | - array_map(function (\Composer\Package\PackageInterface $package) { |
|
42 | + array_map(function(\Composer\Package\PackageInterface $package) { |
|
43 | 43 | return $package->getName(); |
44 | 44 | }, $packages), |
45 | 45 | $packages |
@@ -180,7 +180,7 @@ |
||
180 | 180 | $patchListUtils->updateStatuses($excludedPatches, 'excluded') |
181 | 181 | ); |
182 | 182 | |
183 | - array_walk($patches, function (array &$group) { |
|
183 | + array_walk($patches, function(array &$group) { |
|
184 | 184 | ksort($group); |
185 | 185 | }, $patches); |
186 | 186 | } |
@@ -66,7 +66,7 @@ |
||
66 | 66 | |
67 | 67 | $prefix = $this->getIndentationString(); |
68 | 68 | |
69 | - $lines = array_map(function ($line) use ($prefix) { |
|
69 | + $lines = array_map(function($line) use ($prefix) { |
|
70 | 70 | return $prefix . $line; |
71 | 71 | }, explode(PHP_EOL, $message)); |
72 | 72 |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | $output = ''; |
36 | 36 | |
37 | - $outputHandler = function ($type, $data) use ($logger, &$output) { |
|
37 | + $outputHandler = function($type, $data) use ($logger, &$output) { |
|
38 | 38 | $output .= $data; |
39 | 39 | |
40 | 40 | $logger->writeVerbose('comment', trim($data)); |
@@ -218,7 +218,7 @@ |
||
218 | 218 | |
219 | 219 | $queuedPatches = array_filter( |
220 | 220 | $applyQueue[$packageName], |
221 | - function ($data) use ($changedTargets) { |
|
221 | + function($data) use ($changedTargets) { |
|
222 | 222 | return array_intersect($data[Patch::TARGETS], $changedTargets); |
223 | 223 | } |
224 | 224 | ); |
@@ -128,7 +128,7 @@ |
||
128 | 128 | $installPath = $this->getSourcePath($package); |
129 | 129 | |
130 | 130 | $sourcePaths = array_map( |
131 | - function ($path) use ($installPath) { |
|
131 | + function($path) use ($installPath) { |
|
132 | 132 | return $installPath . DIRECTORY_SEPARATOR . $path; |
133 | 133 | }, |
134 | 134 | $autoloadConfig[ConfigKeys::PSR4_CONFIG] |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | $that = $this; |
102 | 102 | |
103 | 103 | return array_map( |
104 | - function (array $results) use ($that, $ownerConfig, $normalizer) { |
|
104 | + function(array $results) use ($that, $ownerConfig, $normalizer) { |
|
105 | 105 | $normalizedList = $normalizer->normalize($results, $ownerConfig); |
106 | 106 | |
107 | 107 | return $that->applySharedConfig($results, $normalizedList); |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | } |
126 | 126 | |
127 | 127 | $patches[$target] = array_map( |
128 | - function ($config) use ($updates) { |
|
128 | + function($config) use ($updates) { |
|
129 | 129 | return array_replace($config, $updates); |
130 | 130 | }, |
131 | 131 | $patches[$target] |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | 'label' => $label |
65 | 65 | ); |
66 | 66 | |
67 | - $nameParts = array_map(function ($part) { |
|
67 | + $nameParts = array_map(function($part) { |
|
68 | 68 | $part = strtolower( |
69 | 69 | preg_replace( |
70 | 70 | array('/([A-Z]+)([A-Z][a-z])/', '/([a-z\d])([A-Z])/'), |
@@ -168,19 +168,19 @@ discard block |
||
168 | 168 | private function createMutationAppliers() |
169 | 169 | { |
170 | 170 | return array( |
171 | - function ($value) { |
|
171 | + function($value) { |
|
172 | 172 | return str_replace(' ', '', $value); |
173 | 173 | }, |
174 | - function ($value) { |
|
174 | + function($value) { |
|
175 | 175 | return str_replace(' ', '', ucwords($value)); |
176 | 176 | }, |
177 | - function ($value) { |
|
177 | + function($value) { |
|
178 | 178 | return str_replace(' ', '', ucfirst($value)); |
179 | 179 | }, |
180 | - function ($value) { |
|
180 | + function($value) { |
|
181 | 181 | return str_replace(' ', '-', $value); |
182 | 182 | }, |
183 | - function ($value) { |
|
183 | + function($value) { |
|
184 | 184 | return str_replace(' ', '_', $value); |
185 | 185 | }, |
186 | 186 | ); |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | if ($dependsPatterns = $this->generateDependencyMatchPatterns($ownerConfig)) { |
29 | 29 | $matches = array_filter( |
30 | 30 | array_keys($dependsPatterns), |
31 | - function ($pattern) use ($target) { |
|
31 | + function($pattern) use ($target) { |
|
32 | 32 | return preg_match('#' . $pattern . '#', $target); |
33 | 33 | } |
34 | 34 | ); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
67 | - $patterns = array_map(function ($candidate) { |
|
67 | + $patterns = array_map(function($candidate) { |
|
68 | 68 | return trim($candidate, '*') |
69 | 69 | ? str_replace(chr(32), '.*', preg_quote(str_replace('*', chr(32), $candidate), '#')) |
70 | 70 | : preg_quote($candidate); |