@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | $this->registerMigrations(); |
19 | 19 | |
20 | 20 | $this->publishes([ |
21 | - __DIR__ . '/../../database/migrations' => database_path('migrations'), |
|
21 | + __DIR__.'/../../database/migrations' => database_path('migrations'), |
|
22 | 22 | ], 'module-migrations'); |
23 | 23 | } |
24 | 24 | } |
@@ -33,6 +33,6 @@ discard block |
||
33 | 33 | |
34 | 34 | private function registerMigrations() |
35 | 35 | { |
36 | - $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); |
|
36 | + $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); |
|
37 | 37 | } |
38 | 38 | } |
@@ -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'); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | /** |
55 | 55 | * Determine whether the given module exist. |
56 | 56 | * |
57 | - * @param $name |
|
57 | + * @param string $name |
|
58 | 58 | * |
59 | 59 | * @return bool |
60 | 60 | */ |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | /** |
96 | 96 | * Get module path for a specific module. |
97 | 97 | * |
98 | - * @param $name |
|
98 | + * @param string $name |
|
99 | 99 | * |
100 | 100 | * @return string |
101 | 101 | */ |
@@ -108,10 +108,10 @@ discard block |
||
108 | 108 | { |
109 | 109 | $module = $this->find($name); |
110 | 110 | if ($module) { |
111 | - return $module->getPath() . '/'; |
|
111 | + return $module->getPath().'/'; |
|
112 | 112 | } |
113 | 113 | |
114 | - return $this->getPath() . '/' . Str::studly($name) . '/'; |
|
114 | + return $this->getPath().'/'.Str::studly($name).'/'; |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | /** |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | */ |
162 | 162 | public function getCached() |
163 | 163 | { |
164 | - return $this->app['cache']->remember($this->config('cache.key'), $this->config('cache.lifetime'), function () { |
|
164 | + return $this->app['cache']->remember($this->config('cache.key'), $this->config('cache.lifetime'), function() { |
|
165 | 165 | return $this->getModel()->all(); |
166 | 166 | }); |
167 | 167 | } |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | /** @var DatabaseModule $module */ |
270 | 270 | $module = $this->findOrFail($name); |
271 | 271 | |
272 | - $json = Json::make($module->getPath() . '/' . 'module.json'); |
|
272 | + $json = Json::make($module->getPath().'/'.'module.json'); |
|
273 | 273 | $data = $json->getAttributes(); |
274 | 274 | |
275 | 275 | if (!isset($data['version'])) { |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | public function generateFiles() |
81 | 81 | { |
82 | 82 | foreach ($this->getFiles() as $stub => $file) { |
83 | - $path = $this->module->getModulePath($this->getName()) . $file; |
|
83 | + $path = $this->module->getModulePath($this->getName()).$file; |
|
84 | 84 | |
85 | 85 | if (!$this->filesystem->isDirectory($dir = dirname($path))) { |
86 | 86 | $this->filesystem->makeDirectory($dir, 0775, true); |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | |
112 | 112 | if (GenerateConfigReader::read('provider')->generate() === true) { |
113 | 113 | Artisan::call('module:make-provider', [ |
114 | - 'name' => $moduleName . 'ServiceProvider', |
|
114 | + 'name' => $moduleName.'ServiceProvider', |
|
115 | 115 | 'module' => $moduleName, |
116 | 116 | '--master' => true, |
117 | 117 | ]); |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | if (GenerateConfigReader::read('controller')->generate() === true) { |
124 | 124 | $options = $this->type == 'api' ? ['--api' => true] : []; |
125 | 125 | Artisan::call('module:make-controller', [ |
126 | - 'controller' => $moduleName . 'Controller', |
|
126 | + 'controller' => $moduleName.'Controller', |
|
127 | 127 | 'module' => $moduleName, |
128 | 128 | ] + $options); |
129 | 129 | } |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | */ |
135 | 135 | private function generateModuleJsonFile() |
136 | 136 | { |
137 | - $path = $this->module->getModulePath($this->getName()) . 'module.json'; |
|
137 | + $path = $this->module->getModulePath($this->getName()).'module.json'; |
|
138 | 138 | |
139 | 139 | if (!$this->filesystem->isDirectory($dir = dirname($path))) { |
140 | 140 | $this->filesystem->makeDirectory($dir, 0775, true); |