@@ -193,14 +193,14 @@ |
||
193 | 193 | $repository = $composer->getRepositoryManager()->getLocalRepository(); |
194 | 194 | |
195 | 195 | $runtimeUtils->executeWithPostAction( |
196 | - function () use ($shouldUndo, $filters, $bootstrap, $isDevMode) { |
|
196 | + function() use ($shouldUndo, $filters, $bootstrap, $isDevMode) { |
|
197 | 197 | if ($shouldUndo && !array_filter($filters)) { |
198 | 198 | $bootstrap->stripPatches($isDevMode); |
199 | 199 | } else { |
200 | 200 | $bootstrap->applyPatches($isDevMode); |
201 | 201 | } |
202 | 202 | }, |
203 | - function () use ($repository, $lockSanitizer) { |
|
203 | + function() use ($repository, $lockSanitizer) { |
|
204 | 204 | $repository->write(); |
205 | 205 | $lockSanitizer->sanitize(); |
206 | 206 | } |
@@ -96,10 +96,10 @@ |
||
96 | 96 | $lockSanitizer = $this->lockSanitizer; |
97 | 97 | |
98 | 98 | $runtimeUtils->executeWithPostAction( |
99 | - function () use ($bootstrap, $event) { |
|
99 | + function() use ($bootstrap, $event) { |
|
100 | 100 | $bootstrap->applyPatches($event->isDevMode()); |
101 | 101 | }, |
102 | - function () use ($repository, $lockSanitizer) { |
|
102 | + function() use ($repository, $lockSanitizer) { |
|
103 | 103 | $repository->write(); |
104 | 104 | $lockSanitizer->sanitize(); |
105 | 105 | } |