@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | use Illuminate\Foundation\Vite; |
4 | 4 | use Illuminate\Support\Facades\Vite as ViteFacade; |
5 | 5 | |
6 | -if (! function_exists('module_path')) { |
|
6 | +if (!function_exists('module_path')) { |
|
7 | 7 | function module_path($name, $path = '') |
8 | 8 | { |
9 | 9 | $module = app('modules')->find($name); |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | } |
13 | 13 | } |
14 | 14 | |
15 | -if (! function_exists('config_path')) { |
|
15 | +if (!function_exists('config_path')) { |
|
16 | 16 | /** |
17 | 17 | * Get the configuration path. |
18 | 18 | * |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | } |
26 | 26 | } |
27 | 27 | |
28 | -if (! function_exists('public_path')) { |
|
28 | +if (!function_exists('public_path')) { |
|
29 | 29 | /** |
30 | 30 | * Get the path to the public folder. |
31 | 31 | * |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
41 | -if (! function_exists('module_vite')) { |
|
41 | +if (!function_exists('module_vite')) { |
|
42 | 42 | /** |
43 | 43 | * support for vite |
44 | 44 | */ |
@@ -42,12 +42,12 @@ |
||
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); |
49 | 49 | }); |
50 | - $this->app->singleton(Contracts\ActivatorInterface::class, function ($app) { |
|
50 | + $this->app->singleton(Contracts\ActivatorInterface::class, function($app) { |
|
51 | 51 | $activator = $app['config']->get('modules.activator'); |
52 | 52 | $class = $app['config']->get('modules.activators.'.$activator)['class']; |
53 | 53 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | $database = $this->option('database'); |
35 | 35 | |
36 | - if (! empty($database)) { |
|
36 | + if (!empty($database)) { |
|
37 | 37 | $migrator->setDatabase($database); |
38 | 38 | } |
39 | 39 |
@@ -71,12 +71,12 @@ discard block |
||
71 | 71 | { |
72 | 72 | if ($this instanceof ConfirmableCommand) { |
73 | 73 | if ($this->isProhibited() || |
74 | - ! $this->confirmToProceed($this->getConfirmableLabel(), fn () => true)) { |
|
74 | + !$this->confirmToProceed($this->getConfirmableLabel(), fn () => true)) { |
|
75 | 75 | return 1; |
76 | 76 | } |
77 | 77 | } |
78 | 78 | |
79 | - if (! is_null($info = $this->getInfo())) { |
|
79 | + if (!is_null($info = $this->getInfo())) { |
|
80 | 80 | $this->components->info($info); |
81 | 81 | } |
82 | 82 | |
@@ -99,17 +99,17 @@ discard block |
||
99 | 99 | return; |
100 | 100 | } |
101 | 101 | |
102 | - if (! empty($input->getArgument('module'))) { |
|
102 | + if (!empty($input->getArgument('module'))) { |
|
103 | 103 | return; |
104 | 104 | } |
105 | 105 | |
106 | 106 | $selected_item = multisearch( |
107 | 107 | label: 'Select Modules', |
108 | - options: function (string $search_value) use ($modules) { |
|
108 | + options: function(string $search_value) use ($modules) { |
|
109 | 109 | return collect([ |
110 | 110 | self::ALL, |
111 | 111 | ...$modules, |
112 | - ])->when(strlen($search_value) > 0, function (Collection &$modules) use ($search_value) { |
|
112 | + ])->when(strlen($search_value) > 0, function(Collection & $modules) use ($search_value) { |
|
113 | 113 | return $modules->filter(fn ($item) => str_contains(strtolower($item), strtolower($search_value))); |
114 | 114 | })->values()->toArray(); |
115 | 115 | }, |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $paths = array_merge($paths, $this->config('scan.paths')); |
119 | 119 | } |
120 | 120 | |
121 | - $paths = array_map(function ($path) { |
|
121 | + $paths = array_map(function($path) { |
|
122 | 122 | return Str::endsWith($path, '/*') ? $path : Str::finish($path, '/*'); |
123 | 123 | }, $paths); |
124 | 124 | |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | */ |
143 | 143 | public function scan() |
144 | 144 | { |
145 | - if (! empty(self::$modules) && ! $this->app->runningUnitTests()) { |
|
145 | + if (!empty(self::$modules) && !$this->app->runningUnitTests()) { |
|
146 | 146 | return self::$modules; |
147 | 147 | } |
148 | 148 | |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | { |
243 | 243 | $modules = $this->allEnabled(); |
244 | 244 | |
245 | - uasort($modules, function (Module $a, Module $b) use ($direction) { |
|
245 | + uasort($modules, function(Module $a, Module $b) use ($direction) { |
|
246 | 246 | if ($a->get('priority') === $b->get('priority')) { |
247 | 247 | return 0; |
248 | 248 | } |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | } |
363 | 363 | |
364 | 364 | $path = storage_path('app/modules/modules.used'); |
365 | - if (! $this->getFiles()->exists($path)) { |
|
365 | + if (!$this->getFiles()->exists($path)) { |
|
366 | 366 | $this->getFiles()->put($path, ''); |
367 | 367 | } |
368 | 368 | |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | */ |
455 | 455 | public function isDisabled(string $name): bool |
456 | 456 | { |
457 | - return ! $this->isEnabled($name); |
|
457 | + return !$this->isEnabled($name); |
|
458 | 458 | } |
459 | 459 | |
460 | 460 | /** |
@@ -94,7 +94,7 @@ |
||
94 | 94 | { |
95 | 95 | $selected_item = search( |
96 | 96 | label: 'Select Model', |
97 | - options: function (string $search_value) { |
|
97 | + options: function(string $search_value) { |
|
98 | 98 | return $this->findModels( |
99 | 99 | Str::of($search_value)->wrap('', '*') |
100 | 100 | )->toArray(); |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | $file = 'module.json'; |
222 | 222 | } |
223 | 223 | |
224 | - return Arr::get($this->moduleJson, $file, function () use ($file) { |
|
224 | + return Arr::get($this->moduleJson, $file, function() use ($file) { |
|
225 | 225 | return $this->moduleJson[$file] = new Json($this->getPath().'/'.$file, $this->files); |
226 | 226 | }); |
227 | 227 | } |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | */ |
329 | 329 | public function isDisabled(): bool |
330 | 330 | { |
331 | - return ! $this->isEnabled(); |
|
331 | + return !$this->isEnabled(); |
|
332 | 332 | } |
333 | 333 | |
334 | 334 | /** |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | { |
395 | 395 | return config('modules.register.files', 'register') === 'boot' && |
396 | 396 | // force register method if option == boot && app is AsgardCms |
397 | - ! class_exists('\Modules\Core\Foundation\AsgardCms'); |
|
397 | + !class_exists('\Modules\Core\Foundation\AsgardCms'); |
|
398 | 398 | } |
399 | 399 | |
400 | 400 | /** |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | $path = $this->app['config']->get('modules.stubs.path') ?? __DIR__.'/Commands/stubs'; |
67 | 67 | Stub::setBasePath($path); |
68 | 68 | |
69 | - $this->app->booted(function ($app) { |
|
69 | + $this->app->booted(function($app) { |
|
70 | 70 | /** @var RepositoryInterface $moduleRepository */ |
71 | 71 | $moduleRepository = $app[RepositoryInterface::class]; |
72 | 72 | if ($moduleRepository->config('stubs.enabled') === true) { |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | */ |
81 | 81 | protected function registerServices() |
82 | 82 | { |
83 | - $this->app->singleton(Contracts\RepositoryInterface::class, function ($app) { |
|
83 | + $this->app->singleton(Contracts\RepositoryInterface::class, function($app) { |
|
84 | 84 | $path = $app['config']->get('modules.paths.modules'); |
85 | 85 | |
86 | 86 | return new Laravel\LaravelFileRepository($app, $path); |
87 | 87 | }); |
88 | - $this->app->singleton(Contracts\ActivatorInterface::class, function ($app) { |
|
88 | + $this->app->singleton(Contracts\ActivatorInterface::class, function($app) { |
|
89 | 89 | $activator = $app['config']->get('modules.activator'); |
90 | 90 | $class = $app['config']->get('modules.activators.'.$activator)['class']; |
91 | 91 | |
@@ -100,14 +100,14 @@ discard block |
||
100 | 100 | |
101 | 101 | protected function registerMigrations(): void |
102 | 102 | { |
103 | - if (! $this->app['config']->get('modules.auto-discover.migrations', true)) { |
|
103 | + if (!$this->app['config']->get('modules.auto-discover.migrations', true)) { |
|
104 | 104 | return; |
105 | 105 | } |
106 | 106 | |
107 | - $this->app->resolving(Migrator::class, function (Migrator $migrator) { |
|
107 | + $this->app->resolving(Migrator::class, function(Migrator $migrator) { |
|
108 | 108 | $migration_path = $this->app['config']->get('modules.paths.generator.migration.path'); |
109 | 109 | collect(\Nwidart\Modules\Facades\Module::allEnabled()) |
110 | - ->each(function (\Nwidart\Modules\Laravel\Module $module) use ($migration_path, $migrator) { |
|
110 | + ->each(function(\Nwidart\Modules\Laravel\Module $module) use ($migration_path, $migrator) { |
|
111 | 111 | $migrator->path($module->getExtraPath($migration_path)); |
112 | 112 | }); |
113 | 113 | }); |
@@ -115,16 +115,16 @@ discard block |
||
115 | 115 | |
116 | 116 | protected function registerTranslations(): void |
117 | 117 | { |
118 | - if (! $this->app['config']->get('modules.auto-discover.translations', true)) { |
|
118 | + if (!$this->app['config']->get('modules.auto-discover.translations', true)) { |
|
119 | 119 | return; |
120 | 120 | } |
121 | - $this->callAfterResolving('translator', function (TranslatorContract $translator) { |
|
122 | - if (! $translator instanceof Translator) { |
|
121 | + $this->callAfterResolving('translator', function(TranslatorContract $translator) { |
|
122 | + if (!$translator instanceof Translator) { |
|
123 | 123 | return; |
124 | 124 | } |
125 | 125 | |
126 | 126 | collect(\Nwidart\Modules\Facades\Module::allEnabled()) |
127 | - ->each(function (\Nwidart\Modules\Laravel\Module $module) use ($translator) { |
|
127 | + ->each(function(\Nwidart\Modules\Laravel\Module $module) use ($translator) { |
|
128 | 128 | $path = $module->getExtraPath($this->app['config']->get('modules.paths.generator.lang.path')); |
129 | 129 | $translator->addNamespace($module->getLowerName(), $path); |
130 | 130 | $translator->addJsonPath($path); |
@@ -85,11 +85,11 @@ discard block |
||
85 | 85 | /** |
86 | 86 | * {@inheritDoc} |
87 | 87 | */ |
88 | - public function hasStatus(Module|string $module, bool $status): bool |
|
88 | + public function hasStatus(Module | string $module, bool $status): bool |
|
89 | 89 | { |
90 | 90 | $name = $module instanceof Module ? $module->getName() : $module; |
91 | 91 | |
92 | - if (! isset($this->modulesStatuses[$name])) { |
|
92 | + if (!isset($this->modulesStatuses[$name])) { |
|
93 | 93 | return $status === false; |
94 | 94 | } |
95 | 95 | |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | public function delete(Module $module): void |
120 | 120 | { |
121 | - if (! isset($this->modulesStatuses[$module->getName()])) { |
|
121 | + if (!isset($this->modulesStatuses[$module->getName()])) { |
|
122 | 122 | return; |
123 | 123 | } |
124 | 124 | unset($this->modulesStatuses[$module->getName()]); |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | */ |
141 | 141 | private function readJson(): array |
142 | 142 | { |
143 | - if (! $this->files->exists($this->statusesFile)) { |
|
143 | + if (!$this->files->exists($this->statusesFile)) { |
|
144 | 144 | return []; |
145 | 145 | } |
146 | 146 |