Completed
Pull Request — master (#1430)
by
unknown
07:57
created
src/Commands/GeneratorCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Commands/ListCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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
         });
Please login to merge, or discard this patch.