@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | ]); |
41 | 41 | |
42 | 42 | // Create @module() blade directive. |
43 | - Blade::if('module', function (string $name) { |
|
43 | + Blade::if ('module', function(string $name) { |
|
44 | 44 | return module($name); |
45 | 45 | }); |
46 | 46 | } |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $path = $this->app['config']->get('modules.stubs.path') ?? __DIR__.'/Commands/stubs'; |
69 | 69 | Stub::setBasePath($path); |
70 | 70 | |
71 | - $this->app->booted(function ($app) { |
|
71 | + $this->app->booted(function($app) { |
|
72 | 72 | /** @var RepositoryInterface $moduleRepository */ |
73 | 73 | $moduleRepository = $app[RepositoryInterface::class]; |
74 | 74 | if ($moduleRepository->config('stubs.enabled') === true) { |
@@ -82,12 +82,12 @@ discard block |
||
82 | 82 | */ |
83 | 83 | protected function registerServices() |
84 | 84 | { |
85 | - $this->app->singleton(Contracts\RepositoryInterface::class, function ($app) { |
|
85 | + $this->app->singleton(Contracts\RepositoryInterface::class, function($app) { |
|
86 | 86 | $path = $app['config']->get('modules.paths.modules'); |
87 | 87 | |
88 | 88 | return new Laravel\LaravelFileRepository($app, $path); |
89 | 89 | }); |
90 | - $this->app->singleton(Contracts\ActivatorInterface::class, function ($app) { |
|
90 | + $this->app->singleton(Contracts\ActivatorInterface::class, function($app) { |
|
91 | 91 | $activator = $app['config']->get('modules.activator'); |
92 | 92 | $class = $app['config']->get('modules.activators.'.$activator)['class']; |
93 | 93 | |
@@ -102,14 +102,14 @@ discard block |
||
102 | 102 | |
103 | 103 | protected function registerMigrations(): void |
104 | 104 | { |
105 | - if (! $this->app['config']->get('modules.auto-discover.migrations', true)) { |
|
105 | + if (!$this->app['config']->get('modules.auto-discover.migrations', true)) { |
|
106 | 106 | return; |
107 | 107 | } |
108 | 108 | |
109 | - $this->app->resolving(Migrator::class, function (Migrator $migrator) { |
|
109 | + $this->app->resolving(Migrator::class, function(Migrator $migrator) { |
|
110 | 110 | $migration_path = $this->app['config']->get('modules.paths.generator.migration.path'); |
111 | 111 | collect(\Nwidart\Modules\Facades\Module::allEnabled()) |
112 | - ->each(function (\Nwidart\Modules\Laravel\Module $module) use ($migration_path, $migrator) { |
|
112 | + ->each(function(\Nwidart\Modules\Laravel\Module $module) use ($migration_path, $migrator) { |
|
113 | 113 | $migrator->path($module->path($migration_path)); |
114 | 114 | }); |
115 | 115 | }); |
@@ -117,16 +117,16 @@ discard block |
||
117 | 117 | |
118 | 118 | protected function registerTranslations(): void |
119 | 119 | { |
120 | - if (! $this->app['config']->get('modules.auto-discover.translations', true)) { |
|
120 | + if (!$this->app['config']->get('modules.auto-discover.translations', true)) { |
|
121 | 121 | return; |
122 | 122 | } |
123 | - $this->callAfterResolving('translator', function (TranslatorContract $translator) { |
|
124 | - if (! $translator instanceof Translator) { |
|
123 | + $this->callAfterResolving('translator', function(TranslatorContract $translator) { |
|
124 | + if (!$translator instanceof Translator) { |
|
125 | 125 | return; |
126 | 126 | } |
127 | 127 | |
128 | 128 | collect(\Nwidart\Modules\Facades\Module::allEnabled()) |
129 | - ->each(function (\Nwidart\Modules\Laravel\Module $module) use ($translator) { |
|
129 | + ->each(function(\Nwidart\Modules\Laravel\Module $module) use ($translator) { |
|
130 | 130 | $path = $module->path($this->app['config']->get('modules.paths.generator.lang.path')); |
131 | 131 | $translator->addNamespace($module->getLowerName(), $path); |
132 | 132 | $translator->addJsonPath($path); |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | $file = 'module.json'; |
237 | 237 | } |
238 | 238 | |
239 | - return Arr::get($this->moduleJson, $file, function () use ($file) { |
|
239 | + return Arr::get($this->moduleJson, $file, function() use ($file) { |
|
240 | 240 | return $this->moduleJson[$file] = new Json($this->path($file), $this->files); |
241 | 241 | }); |
242 | 242 | } |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | */ |
336 | 336 | public function isDisabled(): bool |
337 | 337 | { |
338 | - return ! $this->isEnabled(); |
|
338 | + return !$this->isEnabled(); |
|
339 | 339 | } |
340 | 340 | |
341 | 341 | /** |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | { |
404 | 404 | return config('modules.register.files', 'register') === 'boot' && |
405 | 405 | // force register method if option == boot && app is AsgardCms |
406 | - ! class_exists('\Modules\Core\Foundation\AsgardCms'); |
|
406 | + !class_exists('\Modules\Core\Foundation\AsgardCms'); |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | /** |
@@ -115,7 +115,7 @@ |
||
115 | 115 | { |
116 | 116 | $path = $this->path(); |
117 | 117 | |
118 | - if (! $this->filesystem->exists($path)) { |
|
118 | + if (!$this->filesystem->exists($path)) { |
|
119 | 119 | return $this->filesystem->put($path, $this->getContents()); |
120 | 120 | } |
121 | 121 |
@@ -263,7 +263,7 @@ discard block |
||
263 | 263 | /** |
264 | 264 | * Set force status. |
265 | 265 | */ |
266 | - public function setForce(bool|int $force): self |
|
266 | + public function setForce(bool | int $force): self |
|
267 | 267 | { |
268 | 268 | $this->force = $force; |
269 | 269 | |
@@ -354,8 +354,8 @@ discard block |
||
354 | 354 | foreach ($this->getFiles() as $stub => $file) { |
355 | 355 | $path = $this->module->getModulePath($this->getName()).$file; |
356 | 356 | |
357 | - $this->component->task("Generating file {$path}", function () use ($stub, $path) { |
|
358 | - if (! $this->filesystem->isDirectory($dir = dirname($path))) { |
|
357 | + $this->component->task("Generating file {$path}", function() use ($stub, $path) { |
|
358 | + if (!$this->filesystem->isDirectory($dir = dirname($path))) { |
|
359 | 359 | $this->filesystem->makeDirectory($dir, 0775, true); |
360 | 360 | } |
361 | 361 | |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | $eventGeneratorConfig = GenerateConfigReader::read('event-provider'); |
398 | 398 | if ( |
399 | 399 | (is_null($eventGeneratorConfig->path()) && $providerGenerator->generate()) |
400 | - || (! is_null($eventGeneratorConfig->path()) && $eventGeneratorConfig->generate()) |
|
400 | + || (!is_null($eventGeneratorConfig->path()) && $eventGeneratorConfig->generate()) |
|
401 | 401 | ) { |
402 | 402 | $this->console->call('module:make-event-provider', [ |
403 | 403 | 'module' => $this->getName(), |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | $routeGeneratorConfig = GenerateConfigReader::read('route-provider'); |
417 | 417 | if ( |
418 | 418 | (is_null($routeGeneratorConfig->path()) && $providerGenerator->generate()) |
419 | - || (! is_null($routeGeneratorConfig->path()) && $routeGeneratorConfig->generate()) |
|
419 | + || (!is_null($routeGeneratorConfig->path()) && $routeGeneratorConfig->generate()) |
|
420 | 420 | ) { |
421 | 421 | $this->console->call('module:route-provider', [ |
422 | 422 | 'module' => $this->getName(), |
@@ -469,17 +469,17 @@ discard block |
||
469 | 469 | $replacements = $this->module->config('stubs.replacements'); |
470 | 470 | |
471 | 471 | // Temporarily check if the replacements are defined; remove in the next major version. |
472 | - if (! isset($replacements['composer']['APP_FOLDER_NAME'])) { |
|
472 | + if (!isset($replacements['composer']['APP_FOLDER_NAME'])) { |
|
473 | 473 | $replacements['composer'][] = 'APP_FOLDER_NAME'; |
474 | 474 | } |
475 | - if (! isset($replacements['routes/web']['PLURAL_LOWER_NAME'])) { |
|
475 | + if (!isset($replacements['routes/web']['PLURAL_LOWER_NAME'])) { |
|
476 | 476 | $replacements['routes/web'][] = 'PLURAL_LOWER_NAME'; |
477 | 477 | } |
478 | - if (! isset($replacements['routes/api']['PLURAL_LOWER_NAME'])) { |
|
478 | + if (!isset($replacements['routes/api']['PLURAL_LOWER_NAME'])) { |
|
479 | 479 | $replacements['routes/api'][] = 'PLURAL_LOWER_NAME'; |
480 | 480 | } |
481 | 481 | |
482 | - if (! isset($replacements[$stub])) { |
|
482 | + if (!isset($replacements[$stub])) { |
|
483 | 483 | return []; |
484 | 484 | } |
485 | 485 | |
@@ -519,8 +519,8 @@ discard block |
||
519 | 519 | { |
520 | 520 | $path = $this->module->getModulePath($this->getName()).'module.json'; |
521 | 521 | |
522 | - $this->component->task("Generating file $path", function () use ($path) { |
|
523 | - if (! $this->filesystem->isDirectory($dir = dirname($path))) { |
|
522 | + $this->component->task("Generating file $path", function() use ($path) { |
|
523 | + if (!$this->filesystem->isDirectory($dir = dirname($path))) { |
|
524 | 524 | $this->filesystem->makeDirectory($dir, 0775, true); |
525 | 525 | } |
526 | 526 |