|
@@ -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.