Passed
Pull Request — master (#122)
by Marco
06:08
created
src/Git/CheckedOutRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/LocateDependencies/LocateDependenciesViaComposer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.