@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | $generatorPath = GenerateConfigReader::read('provider'); |
88 | 88 | |
89 | - return $path . $generatorPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
89 | + return $path.$generatorPath->getPath().'/'.$this->getFileName().'.php'; |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | */ |
95 | 95 | protected function getWebRoutesPath() |
96 | 96 | { |
97 | - return '/' . $this->laravel['modules']->config('stubs.files.routes/web', 'Routes/web.php'); |
|
97 | + return '/'.$this->laravel['modules']->config('stubs.files.routes/web', 'Routes/web.php'); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | /** |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | protected function getApiRoutesPath() |
104 | 104 | { |
105 | - return '/' . $this->laravel['modules']->config('stubs.files.routes/api', 'Routes/api.php'); |
|
105 | + return '/'.$this->laravel['modules']->config('stubs.files.routes/api', 'Routes/api.php'); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | public function getDefaultNamespace() : string |