@@ -77,7 +77,7 @@  | 
                                                    ||
| 77 | 77 | |
| 78 | 78 | $orderedPackageList = PackagesOrderer::reorderPackages($unorderedPackagesList);  | 
                                                        
| 79 | 79 | |
| 80 | -        return array_filter($orderedPackageList, function (PackageInterface $package) { | 
                                                        |
| 80 | +        return array_filter($orderedPackageList, function(PackageInterface $package) { | 
                                                        |
| 81 | 81 | $installationManager = $this->composer->getInstallationManager();  | 
                                                        
| 82 | 82 | |
| 83 | 83 | $packageInstallPath = $installationManager->getInstallPath($package);  | 
                                                        
@@ -26,7 +26,7 @@  | 
                                                    ||
| 26 | 26 |      { | 
                                                        
| 27 | 27 | // The very first step is to reorder the packages alphabetically.  | 
                                                        
| 28 | 28 | // This is to ensure the same order every time, even between packages that are unrelated.  | 
                                                        
| 29 | -        usort($unorderedPackagesList, function (PackageInterface $packageA, PackageInterface $packageB) { | 
                                                        |
| 29 | +        usort($unorderedPackagesList, function(PackageInterface $packageA, PackageInterface $packageB) { | 
                                                        |
| 30 | 30 | return strcmp($packageA->getName(), $packageB->getName());  | 
                                                        
| 31 | 31 | });  | 
                                                        
| 32 | 32 | |