Completed
Pull Request — master (#2004)
by Basil
02:42
created
core/console/commands/ImportController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             $this->_dirs[$folderName][] = [
77 77
                 'ns' => $ns,
78 78
                 'module' => $module,
79
-                'folderPath' => rtrim($path,DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR,
79
+                'folderPath' => rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR,
80 80
                 'files' => $this->scanDirectoryFiles($path, $ns, $module),
81 81
             ];
82 82
         }
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 
186 186
         foreach ($queue as $pos => $object) {
187 187
             $this->verbosePrint("Run importer object '{$object->className()}' on position '{$pos}'.", __METHOD__);
188
-            $this->verbosePrint('Module context id: ' . $object->module->id);
188
+            $this->verbosePrint('Module context id: '.$object->module->id);
189 189
             $object->run();
190 190
         }
191 191
 
@@ -195,10 +195,10 @@  discard block
 block discarded – undo
195 195
             Yii::$app->db->createCommand()->update('admin_user', ['force_reload' => 1])->execute();
196 196
         }
197 197
         
198
-        $this->output('LUYA import command (based on LUYA ' . Boot::VERSION . ')');
198
+        $this->output('LUYA import command (based on LUYA '.Boot::VERSION.')');
199 199
         
200 200
         foreach ($this->getLog() as $section => $value) {
201
-            $this->outputInfo(PHP_EOL . $section . ":");
201
+            $this->outputInfo(PHP_EOL.$section.":");
202 202
             $this->logValueToTable($value);
203 203
         }
204 204
         
Please login to merge, or discard this patch.