@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | $replace = $ds === '/' ? '\\' : '/'; |
16 | 16 | } |
17 | 17 | |
18 | - return Str::of($path)->trim($ds)->replace($replace, $ds)->explode($ds)->filter(fn ($segment) => ! empty($segment))->implode($ds); |
|
18 | + return Str::of($path)->trim($ds)->replace($replace, $ds)->explode($ds)->filter(fn ($segment) => !empty($segment))->implode($ds); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | public function module_namespace(string $module, ?string $path = null): string |
57 | 57 | { |
58 | 58 | $module_namespace = rtrim(config('modules.namespace', config('modules.paths.modules')), '\\').'\\'.($module); |
59 | - if (! empty($path)) { |
|
59 | + if (!empty($path)) { |
|
60 | 60 | $module_namespace .= '\\'.ltrim($path, '\\'); |
61 | 61 | } |
62 | 62 |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | /** |
265 | 265 | * Set force status. |
266 | 266 | */ |
267 | - public function setForce(bool|int $force): self |
|
267 | + public function setForce(bool | int $force): self |
|
268 | 268 | { |
269 | 269 | $this->force = $force; |
270 | 270 | |
@@ -355,8 +355,8 @@ discard block |
||
355 | 355 | foreach ($this->getFiles() as $stub => $file) { |
356 | 356 | $path = $this->module->getModulePath($this->getName()).$file; |
357 | 357 | |
358 | - $this->component->task("Generating file {$path}", function () use ($stub, $path) { |
|
359 | - if (! $this->filesystem->isDirectory($dir = dirname($path))) { |
|
358 | + $this->component->task("Generating file {$path}", function() use ($stub, $path) { |
|
359 | + if (!$this->filesystem->isDirectory($dir = dirname($path))) { |
|
360 | 360 | $this->filesystem->makeDirectory($dir, 0775, true); |
361 | 361 | } |
362 | 362 | |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | $eventGeneratorConfig = GenerateConfigReader::read('event-provider'); |
399 | 399 | if ( |
400 | 400 | (is_null($eventGeneratorConfig->getPath()) && $providerGenerator->generate()) |
401 | - || (! is_null($eventGeneratorConfig->getPath()) && $eventGeneratorConfig->generate()) |
|
401 | + || (!is_null($eventGeneratorConfig->getPath()) && $eventGeneratorConfig->generate()) |
|
402 | 402 | ) { |
403 | 403 | $this->console->call('module:make-event-provider', [ |
404 | 404 | 'module' => $this->getName(), |
@@ -417,7 +417,7 @@ discard block |
||
417 | 417 | $routeGeneratorConfig = GenerateConfigReader::read('route-provider'); |
418 | 418 | if ( |
419 | 419 | (is_null($routeGeneratorConfig->getPath()) && $providerGenerator->generate()) |
420 | - || (! is_null($routeGeneratorConfig->getPath()) && $routeGeneratorConfig->generate()) |
|
420 | + || (!is_null($routeGeneratorConfig->getPath()) && $routeGeneratorConfig->generate()) |
|
421 | 421 | ) { |
422 | 422 | $this->console->call('module:route-provider', [ |
423 | 423 | 'module' => $this->getName(), |
@@ -469,15 +469,15 @@ discard block |
||
469 | 469 | { |
470 | 470 | $replacements = $this->module->config('stubs.replacements'); |
471 | 471 | |
472 | - if (! isset($replacements['composer']['APP_PATH'])) { |
|
472 | + if (!isset($replacements['composer']['APP_PATH'])) { |
|
473 | 473 | $replacements['composer'][] = 'APP_PATH'; |
474 | 474 | } |
475 | 475 | |
476 | - if (! isset($replacements['composer']['APP_PATH_NAMESPACE'])) { |
|
476 | + if (!isset($replacements['composer']['APP_PATH_NAMESPACE'])) { |
|
477 | 477 | $replacements['composer'][] = 'APP_PATH_NAMESPACE'; |
478 | 478 | } |
479 | 479 | |
480 | - if (! isset($replacements[$stub])) { |
|
480 | + if (!isset($replacements[$stub])) { |
|
481 | 481 | return []; |
482 | 482 | } |
483 | 483 | |
@@ -517,8 +517,8 @@ discard block |
||
517 | 517 | { |
518 | 518 | $path = $this->module->getModulePath($this->getName()).'module.json'; |
519 | 519 | |
520 | - $this->component->task("Generating file $path", function () use ($path) { |
|
521 | - if (! $this->filesystem->isDirectory($dir = dirname($path))) { |
|
520 | + $this->component->task("Generating file $path", function() use ($path) { |
|
521 | + if (!$this->filesystem->isDirectory($dir = dirname($path))) { |
|
522 | 522 | $this->filesystem->makeDirectory($dir, 0775, true); |
523 | 523 | } |
524 | 524 |