@@ -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 | /** |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | foreach ($this->module->getOrdered($this->option('direction')) as $module) { |
50 | - $this->line('Running for module: <info>' . $module->getName() . '</info>'); |
|
50 | + $this->line('Running for module: <info>'.$module->getName().'</info>'); |
|
51 | 51 | |
52 | 52 | $this->migrate($module); |
53 | 53 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $path = str_replace(base_path(), '', (new Migrator($module, $this->getLaravel()))->getPath()); |
64 | 64 | |
65 | 65 | if ($this->option('subpath')) { |
66 | - $path = $path . "/" . $this->option("subpath"); |
|
66 | + $path = $path."/".$this->option("subpath"); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | $this->call('migrate', [ |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | $paths = array_merge($paths, $this->config('scan.paths')); |
117 | 117 | } |
118 | 118 | |
119 | - $paths = array_map(function ($path) { |
|
119 | + $paths = array_map(function($path) { |
|
120 | 120 | return Str::endsWith($path, '/*') ? $path : Str::finish($path, '/*'); |
121 | 121 | }, $paths); |
122 | 122 | |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | */ |
201 | 201 | public function getCached() |
202 | 202 | { |
203 | - return $this->cache->remember($this->config('cache.key'), $this->config('cache.lifetime'), function () { |
|
203 | + return $this->cache->remember($this->config('cache.key'), $this->config('cache.lifetime'), function() { |
|
204 | 204 | return $this->toCollection()->toArray(); |
205 | 205 | }); |
206 | 206 | } |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | { |
289 | 289 | $modules = $this->allEnabled(); |
290 | 290 | |
291 | - uasort($modules, function (Module $a, Module $b) use ($direction) { |
|
291 | + uasort($modules, function(Module $a, Module $b) use ($direction) { |
|
292 | 292 | if ($a->order == $b->order) { |
293 | 293 | return 0; |
294 | 294 | } |
@@ -427,9 +427,9 @@ discard block |
||
427 | 427 | public function getModulePath($module) |
428 | 428 | { |
429 | 429 | try { |
430 | - return $this->findOrFail($module)->getPath() . '/'; |
|
430 | + return $this->findOrFail($module)->getPath().'/'; |
|
431 | 431 | } catch (ModuleNotFoundException $e) { |
432 | - return $this->getPath() . '/' . Str::studly($module) . '/'; |
|
432 | + return $this->getPath().'/'.Str::studly($module).'/'; |
|
433 | 433 | } |
434 | 434 | } |
435 | 435 | |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | */ |
443 | 443 | public function assetPath($module) : string |
444 | 444 | { |
445 | - return $this->config('paths.assets') . '/' . $module; |
|
445 | + return $this->config('paths.assets').'/'.$module; |
|
446 | 446 | } |
447 | 447 | |
448 | 448 | /** |
@@ -455,7 +455,7 @@ discard block |
||
455 | 455 | */ |
456 | 456 | public function config($key, $default = null) |
457 | 457 | { |
458 | - return $this->config->get('modules.' . $key, $default); |
|
458 | + return $this->config->get('modules.'.$key, $default); |
|
459 | 459 | } |
460 | 460 | |
461 | 461 | /** |
@@ -545,9 +545,9 @@ discard block |
||
545 | 545 | } |
546 | 546 | list($name, $url) = explode(':', $asset); |
547 | 547 | |
548 | - $baseUrl = str_replace(public_path() . DIRECTORY_SEPARATOR, '', $this->getAssetsPath()); |
|
548 | + $baseUrl = str_replace(public_path().DIRECTORY_SEPARATOR, '', $this->getAssetsPath()); |
|
549 | 549 | |
550 | - $url = $this->url->asset($baseUrl . "/{$name}/" . $url); |
|
550 | + $url = $this->url->asset($baseUrl."/{$name}/".$url); |
|
551 | 551 | |
552 | 552 | return str_replace(['http://', 'https://'], '//', $url); |
553 | 553 | } |