@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | public function copyModuleFiles(PackageEvent $event) |
156 | 156 | { |
157 | 157 | $package = $this->extractPackage($event); |
158 | - $this->packagePath = $this->vendorPath .DS. $package->getName(); |
|
158 | + $this->packagePath = $this->vendorPath . DS . $package->getName(); |
|
159 | 159 | if ($package->getType() === 'bluz-module' && file_exists($this->packagePath)) { |
160 | 160 | if ($package->getExtra() && isset($package->getExtra()['copy-files'])) { |
161 | 161 | $this->copyExtras($package->getExtra()['copy-files']); |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | public function removeModuleFiles(PackageEvent $event) |
174 | 174 | { |
175 | 175 | $package = $this->extractPackage($event); |
176 | - $this->packagePath = $this->vendorPath .DS. $package->getName(); |
|
176 | + $this->packagePath = $this->vendorPath . DS . $package->getName(); |
|
177 | 177 | if ($package->getType() === 'bluz-module' && file_exists($this->packagePath)) { |
178 | 178 | if ($package->getExtra() && isset($package->getExtra()['copy-files'])) { |
179 | 179 | $this->removeExtras($package->getExtra()['copy-files']); |