@@ -103,10 +103,10 @@ discard block |
||
103 | 103 | { |
104 | 104 | $module = $this->find($name); |
105 | 105 | if ($module) { |
106 | - return $module->getPath() . '/'; |
|
106 | + return $module->getPath().'/'; |
|
107 | 107 | } |
108 | 108 | |
109 | - return $this->getPath() . '/' . Str::studly($name) . '/'; |
|
109 | + return $this->getPath().'/'.Str::studly($name).'/'; |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | /** |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | */ |
157 | 157 | public function getCached() |
158 | 158 | { |
159 | - return $this->app['cache']->remember($this->config('cache.key'), $this->config('cache.lifetime'), function () { |
|
159 | + return $this->app['cache']->remember($this->config('cache.key'), $this->config('cache.lifetime'), function() { |
|
160 | 160 | return $this->getModel()->all(); |
161 | 161 | }); |
162 | 162 | } |
@@ -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 | */ |
@@ -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'); |
@@ -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); |