@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | public function copyModuleFiles(PackageEvent $event): void |
| 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): void |
| 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']); |
@@ -12,4 +12,4 @@ |
||
| 12 | 12 | |
| 13 | 13 | // init autoloader |
| 14 | 14 | $loader = require PATH_ROOT . '/vendor/autoload.php'; |
| 15 | -$loader->addPsr4('Bluz\\Tests\\', __DIR__ .'/src'); |
|
| 15 | +$loader->addPsr4('Bluz\\Tests\\', __DIR__ . '/src'); |
|