@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function getProviders(): array |
56 | 56 | { |
57 | - if (! empty($this->manifest)) { |
|
57 | + if (!empty($this->manifest)) { |
|
58 | 58 | return $this->manifest; |
59 | 59 | } |
60 | 60 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | { |
78 | 78 | // todo check this section store on module.php or not? |
79 | 79 | $this->getModulesData() |
80 | - ->each(function (array $manifest) { |
|
80 | + ->each(function(array $manifest) { |
|
81 | 81 | if (empty($manifest['files'])) { |
82 | 82 | return; |
83 | 83 | } |
@@ -90,17 +90,17 @@ discard block |
||
90 | 90 | |
91 | 91 | public function getModulesData(): Collection |
92 | 92 | { |
93 | - if (! empty(self::$manifestData) && ! app()->runningUnitTests()) { |
|
93 | + if (!empty(self::$manifestData) && !app()->runningUnitTests()) { |
|
94 | 94 | return self::$manifestData; |
95 | 95 | } |
96 | 96 | |
97 | 97 | self::$manifestData = $this->paths |
98 | - ->flatMap(function ($path) { |
|
98 | + ->flatMap(function($path) { |
|
99 | 99 | $manifests = $this->files->glob("{$path}/module.json"); |
100 | 100 | is_array($manifests) || $manifests = []; |
101 | 101 | |
102 | 102 | return collect($manifests) |
103 | - ->map(function ($manifest) { |
|
103 | + ->map(function($manifest) { |
|
104 | 104 | return [ |
105 | 105 | 'module_directory' => dirname($manifest), |
106 | 106 | ...$this->files->json($manifest), |
@@ -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(string $name, string $path = ''): string |
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 | */ |
@@ -22,7 +22,7 @@ discard block |
||
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 | */ |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | } |
33 | 33 | } |
34 | 34 | |
35 | -if (! function_exists('module_vite')) { |
|
35 | +if (!function_exists('module_vite')) { |
|
36 | 36 | /** |
37 | 37 | * support for vite |
38 | 38 | */ |
@@ -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->getPath()) && $providerGenerator->generate()) |
400 | - || (! is_null($eventGeneratorConfig->getPath()) && $eventGeneratorConfig->generate()) |
|
400 | + || (!is_null($eventGeneratorConfig->getPath()) && $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->getPath()) && $providerGenerator->generate()) |
419 | - || (! is_null($routeGeneratorConfig->getPath()) && $routeGeneratorConfig->generate()) |
|
419 | + || (!is_null($routeGeneratorConfig->getPath()) && $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 |