@@ -27,7 +27,7 @@ |
||
27 | 27 | |
28 | 28 | return (bool)array_filter( |
29 | 29 | $patches, |
30 | - function (array $patch) use ($muteTriggersMatcher) { |
|
30 | + function(array $patch) use ($muteTriggersMatcher) { |
|
31 | 31 | return array_filter( |
32 | 32 | array_intersect_key($patch, $muteTriggersMatcher) |
33 | 33 | ); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | { |
29 | 29 | $result = array_reduce( |
30 | 30 | $this->listSources, |
31 | - function ($result, PatchSourceListInterface $listSource) use ($repository) { |
|
31 | + function($result, PatchSourceListInterface $listSource) use ($repository) { |
|
32 | 32 | return array_merge($result, $listSource->getItems($repository)); |
33 | 33 | }, |
34 | 34 | array() |
@@ -58,7 +58,7 @@ |
||
58 | 58 | |
59 | 59 | $processedPatches = array_reduce( |
60 | 60 | $this->listLoaders, |
61 | - function (array $patches, ListLoader $listLoader) use ($packages) { |
|
61 | + function(array $patches, ListLoader $listLoader) use ($packages) { |
|
62 | 62 | return $listLoader->process($patches, $packages); |
63 | 63 | }, |
64 | 64 | $patches |
@@ -23,7 +23,7 @@ |
||
23 | 23 | |
24 | 24 | return $this->dataUtils->walkArrayNodes( |
25 | 25 | $patches, |
26 | - function (array $value) use ($dataUtils) { |
|
26 | + function(array $value) use ($dataUtils) { |
|
27 | 27 | return $dataUtils->removeKeysByPrefix($value, '_'); |
28 | 28 | } |
29 | 29 | ); |
@@ -26,7 +26,7 @@ |
||
26 | 26 | { |
27 | 27 | return (bool)array_filter( |
28 | 28 | $this->namespacesExtractor->getConfig($package, ''), |
29 | - function ($item) use ($namespace) { |
|
29 | + function($item) use ($namespace) { |
|
30 | 30 | return strpos($namespace, rtrim($item, '\\')) === 0; |
31 | 31 | } |
32 | 32 | ); |
@@ -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 |
@@ -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] |