@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function getMigrations($reverse = false) |
90 | 90 | { |
91 | - $files = $this->laravel['files']->glob($this->getPath() . '/*_*.php'); |
|
91 | + $files = $this->laravel['files']->glob($this->getPath().'/*_*.php'); |
|
92 | 92 | |
93 | 93 | // Once we have the array of files in the directory we will just remove the |
94 | 94 | // extension and take the basename of the file which is all we need when |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | return []; |
98 | 98 | } |
99 | 99 | |
100 | - $files = array_map(function ($file) { |
|
100 | + $files = array_map(function($file) { |
|
101 | 101 | return str_replace('.php', '', basename($file)); |
102 | 102 | }, $files); |
103 | 103 | |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | { |
215 | 215 | $path = $this->getPath(); |
216 | 216 | foreach ($files as $file) { |
217 | - $this->laravel['files']->requireOnce($path . '/' . $file . '.php'); |
|
217 | + $this->laravel['files']->requireOnce($path.'/'.$file.'.php'); |
|
218 | 218 | } |
219 | 219 | } |
220 | 220 | |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | |
298 | 298 | $result = $query->orderBy('migration', 'desc')->get(); |
299 | 299 | |
300 | - return collect($result)->map(function ($item) { |
|
300 | + return collect($result)->map(function($item) { |
|
301 | 301 | return (array) $item; |
302 | 302 | })->pluck('migration'); |
303 | 303 | } |
@@ -46,7 +46,7 @@ |
||
46 | 46 | } |
47 | 47 | |
48 | 48 | foreach ($this->module->getOrdered($this->option('direction')) as $module) { |
49 | - $this->line('Running for module: <info>' . $module->getName() . '</info>'); |
|
49 | + $this->line('Running for module: <info>'.$module->getName().'</info>'); |
|
50 | 50 | $this->migrateStatus($module); |
51 | 51 | } |
52 | 52 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! function_exists('module_path')) { |
|
3 | +if (!function_exists('module_path')) { |
|
4 | 4 | function module_path($name) |
5 | 5 | { |
6 | 6 | $module = app('modules')->find($name); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | } |
10 | 10 | } |
11 | 11 | |
12 | -if (! function_exists('config_path')) { |
|
12 | +if (!function_exists('config_path')) { |
|
13 | 13 | /** |
14 | 14 | * Get the configuration path. |
15 | 15 | * |
@@ -18,11 +18,11 @@ discard block |
||
18 | 18 | */ |
19 | 19 | function config_path($path = '') |
20 | 20 | { |
21 | - return app()->basePath() . '/config' . ($path ? '/' . $path : $path); |
|
21 | + return app()->basePath().'/config'.($path ? '/'.$path : $path); |
|
22 | 22 | } |
23 | 23 | } |
24 | 24 | |
25 | -if (! function_exists('public_path')) { |
|
25 | +if (!function_exists('public_path')) { |
|
26 | 26 | /** |
27 | 27 | * Get the path to the public folder. |
28 | 28 | * |
@@ -31,6 +31,6 @@ discard block |
||
31 | 31 | */ |
32 | 32 | function public_path($path = '') |
33 | 33 | { |
34 | - return app()->make('path.public') . ($path ? DIRECTORY_SEPARATOR . ltrim($path, DIRECTORY_SEPARATOR) : $path); |
|
34 | + return app()->make('path.public').($path ? DIRECTORY_SEPARATOR . ltrim($path, DIRECTORY_SEPARATOR) : $path); |
|
35 | 35 | } |
36 | 36 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | public function toArray() |
26 | 26 | { |
27 | - return array_map(function ($value) { |
|
27 | + return array_map(function($value) { |
|
28 | 28 | if ($value instanceof Module) { |
29 | 29 | $attributes = $value->json()->getAttributes(); |
30 | 30 | $attributes["path"] = $value->getPath(); |
@@ -71,9 +71,9 @@ discard block |
||
71 | 71 | */ |
72 | 72 | public function getPath() |
73 | 73 | { |
74 | - $path = static::getBasePath() . $this->path; |
|
74 | + $path = static::getBasePath().$this->path; |
|
75 | 75 | |
76 | - return file_exists($path) ? $path : __DIR__ . '/../Commands/stubs' . $this->path; |
|
76 | + return file_exists($path) ? $path : __DIR__.'/../Commands/stubs'.$this->path; |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | $contents = file_get_contents($this->getPath()); |
107 | 107 | |
108 | 108 | foreach ($this->replaces as $search => $replace) { |
109 | - $contents = str_replace('$' . strtoupper($search) . '$', $replace, $contents); |
|
109 | + $contents = str_replace('$'.strtoupper($search).'$', $replace, $contents); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | return $contents; |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | */ |
133 | 133 | public function saveTo($path, $filename) |
134 | 134 | { |
135 | - return file_put_contents($path . '/' . $filename, $this->getContents()); |
|
135 | + return file_put_contents($path.'/'.$filename, $this->getContents()); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -45,7 +45,7 @@ |
||
45 | 45 | |
46 | 46 | protected function updateModule($name) |
47 | 47 | { |
48 | - $this->line('Running for module: <info>' . $name . '</info>'); |
|
48 | + $this->line('Running for module: <info>'.$name.'</info>'); |
|
49 | 49 | |
50 | 50 | $this->laravel['modules']->update($name); |
51 | 51 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function setupStubPath() |
32 | 32 | { |
33 | - Stub::setBasePath(__DIR__ . '/Commands/stubs'); |
|
33 | + Stub::setBasePath(__DIR__.'/Commands/stubs'); |
|
34 | 34 | |
35 | 35 | if (app('modules')->config('stubs.enabled') === true) { |
36 | 36 | Stub::setBasePath(app('modules')->config('stubs.path')); |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | */ |
43 | 43 | protected function registerServices() |
44 | 44 | { |
45 | - $this->app->singleton(Contracts\RepositoryInterface::class, function ($app) { |
|
45 | + $this->app->singleton(Contracts\RepositoryInterface::class, function($app) { |
|
46 | 46 | $path = $app['config']->get('modules.paths.modules'); |
47 | 47 | |
48 | 48 | return new Lumen\LumenFileRepository($app, $path); |
@@ -24,7 +24,7 @@ |
||
24 | 24 | |
25 | 25 | 'stubs' => [ |
26 | 26 | 'enabled' => false, |
27 | - 'path' => base_path() . '/vendor/nwidart/laravel-modules/src/Commands/stubs', |
|
27 | + 'path' => base_path().'/vendor/nwidart/laravel-modules/src/Commands/stubs', |
|
28 | 28 | 'files' => [ |
29 | 29 | 'routes/web' => 'Routes/web.php', |
30 | 30 | 'routes/api' => 'Routes/api.php', |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | /** |
232 | 232 | * Get a specific data from composer.json file by given the key. |
233 | 233 | * |
234 | - * @param $key |
|
234 | + * @param string $key |
|
235 | 235 | * @param null $default |
236 | 236 | * |
237 | 237 | * @return mixed |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | /** |
307 | 307 | * Determine whether the given status same with the current module status. |
308 | 308 | * |
309 | - * @param $status |
|
309 | + * @param integer $status |
|
310 | 310 | * |
311 | 311 | * @return bool |
312 | 312 | */ |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | /** |
339 | 339 | * Set active state for current module. |
340 | 340 | * |
341 | - * @param $active |
|
341 | + * @param integer $active |
|
342 | 342 | * |
343 | 343 | * @return bool |
344 | 344 | */ |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | { |
198 | 198 | $lowerName = $this->getLowerName(); |
199 | 199 | |
200 | - $langPath = $this->getPath() . '/Resources/lang'; |
|
200 | + $langPath = $this->getPath().'/Resources/lang'; |
|
201 | 201 | |
202 | 202 | if (is_dir($langPath)) { |
203 | 203 | $this->loadTranslationsFrom($langPath, $lowerName); |
@@ -217,8 +217,8 @@ discard block |
||
217 | 217 | $file = 'module.json'; |
218 | 218 | } |
219 | 219 | |
220 | - return Arr::get($this->moduleJson, $file, function () use ($file) { |
|
221 | - return $this->moduleJson[$file] = new Json($this->getPath() . '/' . $file, $this->files); |
|
220 | + return Arr::get($this->moduleJson, $file, function() use ($file) { |
|
221 | + return $this->moduleJson[$file] = new Json($this->getPath().'/'.$file, $this->files); |
|
222 | 222 | }); |
223 | 223 | } |
224 | 224 | |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | */ |
272 | 272 | protected function fireEvent($event) |
273 | 273 | { |
274 | - $this->app['events']->dispatch(sprintf('modules.%s.' . $event, $this->getLowerName()), [$this]); |
|
274 | + $this->app['events']->dispatch(sprintf('modules.%s.'.$event, $this->getLowerName()), [$this]); |
|
275 | 275 | } |
276 | 276 | /** |
277 | 277 | * Register the aliases from this module. |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | protected function registerFiles() |
297 | 297 | { |
298 | 298 | foreach ($this->get('files', []) as $file) { |
299 | - include $this->path . '/' . $file; |
|
299 | + include $this->path.'/'.$file; |
|
300 | 300 | } |
301 | 301 | } |
302 | 302 | |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | */ |
400 | 400 | public function getExtraPath(string $path) : string |
401 | 401 | { |
402 | - return $this->getPath() . '/' . $path; |
|
402 | + return $this->getPath().'/'.$path; |
|
403 | 403 | } |
404 | 404 | |
405 | 405 | /** |