Completed
Push — master ( 2e6970...cfac02 )
by Anton
14s
created
src/Installers/Plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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']);
Please login to merge, or discard this patch.