@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | $module = $this->laravel['modules']->findOrFail($this->getModuleName()); |
69 | 69 | |
70 | - return (new Stub('/' . $stub . '.stub', [ |
|
70 | + return (new Stub('/'.$stub.'.stub', [ |
|
71 | 71 | 'NAMESPACE' => $this->getClassNamespace($module), |
72 | 72 | 'CLASS' => $this->getClass(), |
73 | 73 | 'LOWER_NAME' => $module->getLowerName(), |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | |
91 | 91 | $generatorPath = $this->laravel['modules']->config('paths.generator.provider'); |
92 | 92 | |
93 | - return $path . $generatorPath . '/' . $this->getFileName() . '.php'; |
|
93 | + return $path.$generatorPath.'/'.$this->getFileName().'.php'; |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
@@ -60,7 +60,7 @@ |
||
60 | 60 | |
61 | 61 | $seederPath = $this->laravel['modules']->config('paths.generator.test'); |
62 | 62 | |
63 | - return $path . $seederPath . '/' . $this->getFileName() . '.php'; |
|
63 | + return $path.$seederPath.'/'.$this->getFileName().'.php'; |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
@@ -68,7 +68,7 @@ |
||
68 | 68 | |
69 | 69 | $seederPath = $this->laravel['modules']->config('paths.generator.resource'); |
70 | 70 | |
71 | - return $path . $seederPath . '/' . $this->getFileName() . '.php'; |
|
71 | + return $path.$seederPath.'/'.$this->getFileName().'.php'; |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |