@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('modules', function (Blueprint $table) { |
|
16 | + Schema::create('modules', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('path'); |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | public function generateFiles() |
77 | 77 | { |
78 | 78 | foreach ($this->getFiles() as $stub => $file) { |
79 | - $path = $this->module->getModulePath($this->getName()) . $file; |
|
79 | + $path = $this->module->getModulePath($this->getName()).$file; |
|
80 | 80 | |
81 | 81 | if (!$this->filesystem->isDirectory($dir = dirname($path))) { |
82 | 82 | $this->filesystem->makeDirectory($dir, 0775, true); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | if (GenerateConfigReader::read('provider')->generate() === true) { |
107 | 107 | Artisan::call('module:make-provider', [ |
108 | - 'name' => $this->getName() . 'ServiceProvider', |
|
108 | + 'name' => $this->getName().'ServiceProvider', |
|
109 | 109 | 'module' => $this->getName(), |
110 | 110 | '--master' => true, |
111 | 111 | ]); |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | if (GenerateConfigReader::read('controller')->generate() === true) { |
118 | 118 | $options = $this->type == 'api' ? ['--api' => true] : []; |
119 | 119 | Artisan::call('module:make-controller', [ |
120 | - 'controller' => $this->getName() . 'Controller', |
|
120 | + 'controller' => $this->getName().'Controller', |
|
121 | 121 | 'module' => $this->getName(), |
122 | 122 | ] + $options); |
123 | 123 | } |