@@ -42,7 +42,7 @@ |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | foreach (array_reverse($this->laravel['modules']->all()) as $module) { |
45 | - $this->line('Running for module: <info>' . $module->getName() . '</info>'); |
|
45 | + $this->line('Running for module: <info>'.$module->getName().'</info>'); |
|
46 | 46 | |
47 | 47 | $this->reset($module); |
48 | 48 | } |
@@ -98,7 +98,7 @@ |
||
98 | 98 | |
99 | 99 | $namespace = $this->laravel['modules']->config('namespace'); |
100 | 100 | |
101 | - return $namespace . '\\' . $name . '\Database\Seeders\\' . $name . 'DatabaseSeeder'; |
|
101 | + return $namespace.'\\'.$name.'\Database\Seeders\\'.$name.'DatabaseSeeder'; |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -11,9 +11,9 @@ |
||
11 | 11 | */ |
12 | 12 | protected function loadMigrationFiles($module) |
13 | 13 | { |
14 | - $path = $this->laravel['modules']->getModulePath($module) . $this->getMigrationGeneratorPath(); |
|
14 | + $path = $this->laravel['modules']->getModulePath($module).$this->getMigrationGeneratorPath(); |
|
15 | 15 | |
16 | - $files = $this->laravel['files']->glob($path . '/*_*.php'); |
|
16 | + $files = $this->laravel['files']->glob($path.'/*_*.php'); |
|
17 | 17 | |
18 | 18 | foreach ($files as $file) { |
19 | 19 | $this->laravel['files']->requireOnce($file); |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | $process->setTimeout($this->timeout); |
136 | 136 | |
137 | 137 | if ($this->console instanceof Command) { |
138 | - $process->run(function ($type, $line) { |
|
138 | + $process->run(function($type, $line) { |
|
139 | 139 | $this->console->line($line); |
140 | 140 | }); |
141 | 141 | } |
@@ -239,10 +239,10 @@ discard block |
||
239 | 239 | public function getPackageName() |
240 | 240 | { |
241 | 241 | if (is_null($this->version)) { |
242 | - return $this->name . ':dev-master'; |
|
242 | + return $this->name.':dev-master'; |
|
243 | 243 | } |
244 | 244 | |
245 | - return $this->name . ':' . $this->version; |
|
245 | + return $this->name.':'.$this->version; |
|
246 | 246 | } |
247 | 247 | |
248 | 248 | /** |
@@ -24,7 +24,7 @@ |
||
24 | 24 | |
25 | 25 | 'stubs' => [ |
26 | 26 | 'enabled' => false, |
27 | - 'path' => base_path() . '/vendor/nwidart/laravel-modules/src/Commands/stubs', |
|
27 | + 'path' => base_path().'/vendor/nwidart/laravel-modules/src/Commands/stubs', |
|
28 | 28 | 'files' => [ |
29 | 29 | 'start' => 'start.php', |
30 | 30 | 'routes' => 'Http/routes.php', |
@@ -42,7 +42,7 @@ |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | foreach (array_reverse($this->laravel['modules']->all()) as $module) { |
45 | - $this->line('Running for module: <info>' . $module->getName() . '</info>'); |
|
45 | + $this->line('Running for module: <info>'.$module->getName().'</info>'); |
|
46 | 46 | |
47 | 47 | $this->reset($module); |
48 | 48 | } |
@@ -42,7 +42,7 @@ |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | foreach (array_reverse($this->laravel['modules']->all()) as $module) { |
45 | - $this->line('Running for module: <info>' . $module->getName() . '</info>'); |
|
45 | + $this->line('Running for module: <info>'.$module->getName().'</info>'); |
|
46 | 46 | |
47 | 47 | $this->reset($module); |
48 | 48 | } |