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