@@ -79,13 +79,13 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | protected function setSymlinkDirectory($baseDir, array $extraConfigs) |
| 81 | 81 | {
|
| 82 | - $this->symlinkDir = $baseDir . 'vendor-shared'; |
|
| 82 | + $this->symlinkDir = $baseDir.'vendor-shared'; |
|
| 83 | 83 | |
| 84 | 84 | if (isset($extraConfigs[SharedPackageInstaller::PACKAGE_TYPE]['symlink-dir'])) {
|
| 85 | 85 | $this->symlinkDir = $extraConfigs[SharedPackageInstaller::PACKAGE_TYPE]['symlink-dir']; |
| 86 | 86 | |
| 87 | 87 | if ('/' != $this->symlinkDir[0]) {
|
| 88 | - $this->symlinkDir = $baseDir . $this->symlinkDir; |
|
| 88 | + $this->symlinkDir = $baseDir.$this->symlinkDir; |
|
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | 91 | } |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | if ('/' != $this->vendorDir[0]) {
|
| 108 | - $this->vendorDir = $baseDir . $this->vendorDir; |
|
| 108 | + $this->vendorDir = $baseDir.$this->vendorDir; |
|
| 109 | 109 | } |
| 110 | 110 | } |
| 111 | 111 | |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | |
| 136 | 136 | // Up to the project root directory |
| 137 | 137 | if (0 < strpos($this->symlinkBasePath, '/')) {
|
| 138 | - $this->symlinkBasePath = '../../' . $this->symlinkBasePath; |
|
| 138 | + $this->symlinkBasePath = '../../'.$this->symlinkBasePath; |
|
| 139 | 139 | } |
| 140 | 140 | } |
| 141 | 141 | |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | public function getOriginalVendorDir($endingSlash = false) |
| 213 | 213 | {
|
| 214 | 214 | if ($endingSlash && null != $this->originalVendorDir) {
|
| 215 | - return $this->originalVendorDir . '/'; |
|
| 215 | + return $this->originalVendorDir.'/'; |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | return $this->originalVendorDir; |