Completed
Pull Request — master (#21)
by
unknown
02:01
created
src/LEtudiant/Composer/Installer/Config/SharedPackageInstallerConfig.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -79,13 +79,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.