@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | use function file_exists; |
33 | 33 | use function getcwd; |
34 | 34 | |
35 | -(function () : void { |
|
36 | - (function () : void { |
|
35 | +(function() : void { |
|
36 | + (function() : void { |
|
37 | 37 | $autoloaderLocations = [ |
38 | - __DIR__ . '/../vendor/autoload.php', |
|
39 | - __DIR__ . '/../autoload.php', |
|
40 | - __DIR__ . '/../../autoload.php', |
|
41 | - getcwd() . '/vendor/autoload.php', |
|
38 | + __DIR__.'/../vendor/autoload.php', |
|
39 | + __DIR__.'/../autoload.php', |
|
40 | + __DIR__.'/../../autoload.php', |
|
41 | + getcwd().'/vendor/autoload.php', |
|
42 | 42 | ]; |
43 | 43 | |
44 | 44 | foreach ($autoloaderLocations as $autoload) { |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | new GetVersionCollectionFromGitRepository(), |
68 | 68 | new PickLastMinorVersionFromCollection(), |
69 | 69 | new LocateDependenciesViaComposer( |
70 | - function (string $installationPath) use ($composerIo) : Installer { |
|
70 | + function(string $installationPath) use ($composerIo) : Installer { |
|
71 | 71 | return Installer::create( |
72 | 72 | $composerIo, |
73 | 73 | (new Factory())->createComposer( |