@@ -17,7 +17,7 @@ |
||
17 | 17 | |
18 | 18 | public static function fromPath(string $path) : self |
19 | 19 | { |
20 | - Assert::that($path . '/.git')->directory(); |
|
20 | + Assert::that($path.'/.git')->directory(); |
|
21 | 21 | $instance = new self(); |
22 | 22 | $instance->path = $path; |
23 | 23 |
@@ -37,9 +37,9 @@ |
||
37 | 37 | |
38 | 38 | public function __invoke(string $installationPath) : SourceLocator |
39 | 39 | { |
40 | - Assert::that($installationPath . '/composer.json')->file(); |
|
40 | + Assert::that($installationPath.'/composer.json')->file(); |
|
41 | 41 | |
42 | - $this->runInDirectory(function () use ($installationPath) : void { |
|
42 | + $this->runInDirectory(function() use ($installationPath) : void { |
|
43 | 43 | $installer = ($this->makeComposerInstaller)($installationPath); |
44 | 44 | |
45 | 45 | assert($installer instanceof Installer); |