Completed
Push — master ( 6e1f50...48be52 )
by
unknown
12s
created
src/Generators/ModuleGenerator.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 use Nwidart\Modules\FileRepository;
7 7
 use Nwidart\Modules\Module;
8 8
 
9
-if (! function_exists('module')) {
9
+if (!function_exists('module')) {
10 10
     /**
11 11
      * Retrieves a module status or its instance.
12 12
      *
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      * @param  bool  $instance  Whether to return the module's instance instead of the status. Defaults to false [status].
15 15
      * @return bool|Module The module instance or its status.
16 16
      */
17
-    function module(string $name, bool $instance = false): bool|Module
17
+    function module(string $name, bool $instance = false): bool | Module
18 18
     {
19 19
         /** @var FileRepository $repository */
20 20
         $repository = app('modules');
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     }
30 30
 }
31 31
 
32
-if (! function_exists('module_path')) {
32
+if (!function_exists('module_path')) {
33 33
     function module_path(string $name, string $path = ''): string
34 34
     {
35 35
         $module = app('modules')->find($name);
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     }
39 39
 }
40 40
 
41
-if (! function_exists('config_path')) {
41
+if (!function_exists('config_path')) {
42 42
     /**
43 43
      * Get the configuration path.
44 44
      */
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     }
49 49
 }
50 50
 
51
-if (! function_exists('public_path')) {
51
+if (!function_exists('public_path')) {
52 52
     /**
53 53
      * Get the path to the public folder.
54 54
      */
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     }
59 59
 }
60 60
 
61
-if (! function_exists('module_vite')) {
61
+if (!function_exists('module_vite')) {
62 62
     /**
63 63
      * support for vite
64 64
      */
Please login to merge, or discard this patch.
src/Commands/Actions/ListCommands.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         $groupedCommands = [];
30 30
         foreach ($commands as $command) {
31 31
             $directory = $this->getDirectoryFromNamespace($command['namespace']);
32
-            if (! isset($groupedCommands[$directory])) {
32
+            if (!isset($groupedCommands[$directory])) {
33 33
                 $groupedCommands[$directory] = [];
34 34
             }
35 35
             $groupedCommands[$directory][] = $command;
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         ];
70 70
 
71 71
         foreach ($possiblePaths as $path) {
72
-            if (! is_dir($path)) {
72
+            if (!is_dir($path)) {
73 73
                 continue;
74 74
             }
75 75
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
             // Extract the short class name from the fully qualified class name
136 136
             $shortClassName = $this->getShortClassName($className);
137 137
 
138
-            if (! class_exists($className)) {
138
+            if (!class_exists($className)) {
139 139
                 return [
140 140
                     'class' => $className,
141 141
                     'name' => $shortClassName,
@@ -146,13 +146,13 @@  discard block
 block discarded – undo
146 146
             $reflection = new ReflectionClass($className);
147 147
 
148 148
             // Skip if not a command class
149
-            if (! $reflection->isSubclassOf(SymfonyCommand::class) &&
150
-                ! $reflection->isSubclassOf('Illuminate\Console\Command')) {
149
+            if (!$reflection->isSubclassOf(SymfonyCommand::class) &&
150
+                !$reflection->isSubclassOf('Illuminate\Console\Command')) {
151 151
                 return null;
152 152
             }
153 153
 
154 154
             // Skip if the class is not instantiable or has required constructor parameters
155
-            if (! $reflection->isInstantiable() || $reflection->getConstructor()?->getNumberOfRequiredParameters() > 0) {
155
+            if (!$reflection->isInstantiable() || $reflection->getConstructor()?->getNumberOfRequiredParameters() > 0) {
156 156
                 return [
157 157
                     'class' => $className,
158 158
                     'name' => $shortClassName,
Please login to merge, or discard this patch.
src/Commands/UpdatePhpunitCoverage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,13 +31,13 @@
 block discarded – undo
31 31
         $phpunitXmlPath = base_path('phpunit.xml');
32 32
         $modulesStatusPath = config('modules.activators.file.statuses-file', base_path('modules_statuses.json'));
33 33
 
34
-        if (! file_exists($phpunitXmlPath)) {
34
+        if (!file_exists($phpunitXmlPath)) {
35 35
             $this->error("phpunit.xml file not found: {$phpunitXmlPath}");
36 36
 
37 37
             return 100;
38 38
         }
39 39
 
40
-        if (! file_exists($modulesStatusPath)) {
40
+        if (!file_exists($modulesStatusPath)) {
41 41
             $this->error("Modules statuses file not found: {$modulesStatusPath}");
42 42
 
43 43
             return 99;
Please login to merge, or discard this patch.