@@ -31,11 +31,11 @@ discard block |
||
31 | 31 | use Symfony\Component\Console\Output\ConsoleOutput; |
32 | 32 | use function file_exists; |
33 | 33 | |
34 | -(function () : void { |
|
35 | - (function () : void { |
|
34 | +(function() : void { |
|
35 | + (function() : void { |
|
36 | 36 | $autoloaderLocations = [ |
37 | - __DIR__ . '/../vendor/autoload.php', // Installed by cloning the project and running `composer install` |
|
38 | - __DIR__ . '/../../../autoload.php', // Installed via `composer require` |
|
37 | + __DIR__.'/../vendor/autoload.php', // Installed by cloning the project and running `composer install` |
|
38 | + __DIR__.'/../../../autoload.php', // Installed via `composer require` |
|
39 | 39 | ]; |
40 | 40 | |
41 | 41 | foreach ($autoloaderLocations as $autoload) { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | new GetVersionCollectionFromGitRepository(), |
65 | 65 | new PickLastMinorVersionFromCollection(), |
66 | 66 | new LocateDependenciesViaComposer( |
67 | - function (string $installationPath) use ($composerIo) : Installer { |
|
67 | + function(string $installationPath) use ($composerIo) : Installer { |
|
68 | 68 | return Installer::create( |
69 | 69 | $composerIo, |
70 | 70 | (new Factory())->createComposer( |