Completed
Push — master ( 2ece8c...e36450 )
by Josh
02:35
created
src/RootPackage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
     public static function createFromPath(string $dirPath) : self
17 17
     {
18
-        return new static($dirPath, JsonObject::fromFilePath($dirPath . DIRECTORY_SEPARATOR . 'composer.json'));
18
+        return new static($dirPath, JsonObject::fromFilePath($dirPath.DIRECTORY_SEPARATOR.'composer.json'));
19 19
     }
20 20
 
21 21
     /**
@@ -53,6 +53,6 @@  discard block
 block discarded – undo
53 53
 
54 54
     public function getVendorPath(string $relativePath = '') : string
55 55
     {
56
-        return $this->getPath($this->getVendorDir() . (strlen($relativePath) ? DIRECTORY_SEPARATOR . $relativePath : ''));
56
+        return $this->getPath($this->getVendorDir().(strlen($relativePath) ? DIRECTORY_SEPARATOR.$relativePath : ''));
57 57
     }
58 58
 }
Please login to merge, or discard this patch.