@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | |
77 | 77 | $generatorPath = GenerateConfigReader::read('provider'); |
78 | 78 | |
79 | - return $path . $generatorPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
79 | + return $path.$generatorPath->getPath().'/'.$this->getFileName().'.php'; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | protected function getRoutesPath() |
86 | 86 | { |
87 | - return '/' . $this->laravel['config']->get('stubs.files.routes', 'Http/routes.php'); |
|
87 | + return '/'.$this->laravel['config']->get('stubs.files.routes', 'Http/routes.php'); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | public function getDefaultNamespace() : string |
@@ -86,11 +86,11 @@ |
||
86 | 86 | |
87 | 87 | $namespace = $this->laravel['modules']->config('namespace'); |
88 | 88 | |
89 | - $namespace .= '\\' . $module->getStudlyName(); |
|
89 | + $namespace .= '\\'.$module->getStudlyName(); |
|
90 | 90 | |
91 | - $namespace .= '\\' . $this->getDefaultNamespace(); |
|
91 | + $namespace .= '\\'.$this->getDefaultNamespace(); |
|
92 | 92 | |
93 | - $namespace .= '\\' . $extra; |
|
93 | + $namespace .= '\\'.$extra; |
|
94 | 94 | |
95 | 95 | $namespace = str_replace('/', '\\', $namespace); |
96 | 96 |
@@ -39,11 +39,11 @@ |
||
39 | 39 | |
40 | 40 | public function getDestinationFilePath() |
41 | 41 | { |
42 | - $path = $this->laravel['modules']->getModulePath($this->getModuleName()); |
|
42 | + $path = $this->laravel['modules']->getModulePath($this->getModuleName()); |
|
43 | 43 | |
44 | 44 | $eventPath = GenerateConfigReader::read('event'); |
45 | 45 | |
46 | - return $path . $eventPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
46 | + return $path.$eventPath->getPath().'/'.$this->getFileName().'.php'; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |