@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | public function handle(): int |
36 | 36 | { |
37 | 37 | $path = str_replace('\\', '/', $this->getDestinationFilePath()); |
38 | - $this->components->task("Generating file {$path}",function () use ($path) { |
|
38 | + $this->components->task("Generating file {$path}", function() use ($path) { |
|
39 | 39 | |
40 | 40 | if (!$this->laravel['files']->isDirectory($dir = dirname($path))) { |
41 | 41 | $this->laravel['files']->makeDirectory($dir, 0777, true); |
@@ -93,11 +93,11 @@ discard block |
||
93 | 93 | |
94 | 94 | $namespace = $this->laravel['modules']->config('namespace'); |
95 | 95 | |
96 | - $namespace .= '\\' . $module->getStudlyName(); |
|
96 | + $namespace .= '\\'.$module->getStudlyName(); |
|
97 | 97 | |
98 | - $namespace .= '\\' . $this->getDefaultNamespace(); |
|
98 | + $namespace .= '\\'.$this->getDefaultNamespace(); |
|
99 | 99 | |
100 | - $namespace .= '\\' . $extra; |
|
100 | + $namespace .= '\\'.$extra; |
|
101 | 101 | |
102 | 102 | $namespace = str_replace('/', '\\', $namespace); |
103 | 103 |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function handle(): int |
29 | 29 | { |
30 | 30 | $this->components->twoColumnDetail('<fg=gray>Status / Name</>', '<fg=gray>Path / priority</>'); |
31 | - collect($this->getRows())->each(function ($row) { |
|
31 | + collect($this->getRows())->each(function($row) { |
|
32 | 32 | |
33 | 33 | $this->components->twoColumnDetail("[{$row[1]}] {$row[0]}", "{$row[3]} [{$row[2]}]"); |
34 | 34 | }); |