@@ -76,7 +76,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |