Completed
Pull Request — master (#728)
by Arthur
09:19
created
src/Commands/GeneratorCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
             $this->info("Created : {$path}");
49 49
         } catch (FileAlreadyExistException $e) {
50
-            if($this->confirm("File : {$path} already exists. \n Would you like to overwrite it?")){
50
+            if ($this->confirm("File : {$path} already exists. \n Would you like to overwrite it?")) {
51 51
                 unlink($path);
52 52
                 $this->handle();
53 53
             }
@@ -89,11 +89,11 @@  discard block
 block discarded – undo
89 89
 
90 90
         $namespace = $this->laravel['modules']->config('namespace');
91 91
 
92
-        $namespace .= '\\' . $module->getStudlyName();
92
+        $namespace .= '\\'.$module->getStudlyName();
93 93
 
94
-        $namespace .= '\\' . $this->getDefaultNamespace();
94
+        $namespace .= '\\'.$this->getDefaultNamespace();
95 95
 
96
-        $namespace .= '\\' . $extra;
96
+        $namespace .= '\\'.$extra;
97 97
 
98 98
         $namespace = str_replace('/', '\\', $namespace);
99 99
 
Please login to merge, or discard this patch.