Completed
Pull Request — master (#1831)
by
unknown
06:55
created
src/Commands/Publish/PublishCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $module = $this->getModuleModel($name);
26 26
 
27
-        $this->components->task("Publishing Assets <fg=cyan;options=bold>{$module->getName()}</> Module", function () use ($module) {
27
+        $this->components->task("Publishing Assets <fg=cyan;options=bold>{$module->getName()}</> Module", function() use ($module) {
28 28
             with(new AssetPublisher($module))
29 29
                 ->setRepository($this->laravel['modules'])
30 30
                 ->setConsole($this)
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     }
35 35
 
36
-    public function getInfo(): string|null
36
+    public function getInfo(): string | null
37 37
     {
38 38
         return 'Publishing module asset files ...';
39 39
     }
Please login to merge, or discard this patch.
src/Commands/Make/ViewMakeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
36 36
         $factoryPath = GenerateConfigReader::read('views');
37 37
 
38
-        return $path . $factoryPath->getPath() . '/' . $this->getFileName();
38
+        return $path.$factoryPath->getPath().'/'.$this->getFileName();
39 39
     }
40 40
 
41 41
     /**
@@ -43,6 +43,6 @@  discard block
 block discarded – undo
43 43
      */
44 44
     private function getFileName(): string
45 45
     {
46
-        return Str::lower($this->argument('name')) . '.blade.php';
46
+        return Str::lower($this->argument('name')).'.blade.php';
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
src/Commands/Make/EnumMakeCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
23 23
 
24
-        $filePath = GenerateConfigReader::read('enums')->getPath() ?? config('modules.paths.app_folder') . 'Enums';
24
+        $filePath = GenerateConfigReader::read('enums')->getPath() ?? config('modules.paths.app_folder').'Enums';
25 25
 
26
-        return $path . $filePath . '/' . $this->getEnumName() . '.php';
26
+        return $path.$filePath.'/'.$this->getEnumName().'.php';
27 27
     }
28 28
 
29 29
     protected function getTemplateContents(): string
@@ -54,12 +54,12 @@  discard block
 block discarded – undo
54 54
         ];
55 55
     }
56 56
 
57
-    protected function getEnumName(): array|string
57
+    protected function getEnumName(): array | string
58 58
     {
59 59
         return Str::studly($this->argument('name'));
60 60
     }
61 61
 
62
-    private function getClassNameWithoutNamespace(): array|string
62
+    private function getClassNameWithoutNamespace(): array | string
63 63
     {
64 64
         return class_basename($this->getEnumName());
65 65
     }
Please login to merge, or discard this patch.
src/Commands/Make/ServiceMakeCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
23 23
 
24
-        $filePath = GenerateConfigReader::read('services')->getPath() ?? config('modules.paths.app_folder') . 'Services';
24
+        $filePath = GenerateConfigReader::read('services')->getPath() ?? config('modules.paths.app_folder').'Services';
25 25
 
26
-        return $path . $filePath . '/' . $this->getServiceName() . '.php';
26
+        return $path.$filePath.'/'.$this->getServiceName().'.php';
27 27
     }
28 28
 
29 29
     protected function getTemplateContents(): string
@@ -55,12 +55,12 @@  discard block
 block discarded – undo
55 55
         ];
56 56
     }
57 57
 
58
-    protected function getServiceName(): array|string
58
+    protected function getServiceName(): array | string
59 59
     {
60 60
         return Str::studly($this->argument('name'));
61 61
     }
62 62
 
63
-    private function getClassNameWithoutNamespace(): array|string
63
+    private function getClassNameWithoutNamespace(): array | string
64 64
     {
65 65
         return class_basename($this->getServiceName());
66 66
     }
Please login to merge, or discard this patch.
src/Commands/Make/ActionMakeCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
23 23
 
24
-        $filePath = GenerateConfigReader::read('actions')->getPath() ?? config('modules.paths.app_folder') . 'Actions';
24
+        $filePath = GenerateConfigReader::read('actions')->getPath() ?? config('modules.paths.app_folder').'Actions';
25 25
 
26
-        return $path . $filePath . '/' . $this->getActionName() . '.php';
26
+        return $path.$filePath.'/'.$this->getActionName().'.php';
27 27
     }
28 28
 
29 29
     protected function getTemplateContents(): string
@@ -55,12 +55,12 @@  discard block
 block discarded – undo
55 55
         ];
56 56
     }
57 57
 
58
-    protected function getActionName(): array|string
58
+    protected function getActionName(): array | string
59 59
     {
60 60
         return Str::studly($this->argument('name'));
61 61
     }
62 62
 
63
-    private function getClassNameWithoutNamespace(): array|string
63
+    private function getClassNameWithoutNamespace(): array | string
64 64
     {
65 65
         return class_basename($this->getActionName());
66 66
     }
Please login to merge, or discard this patch.
src/Commands/Make/HelperMakeCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
23 23
 
24
-        $filePath = GenerateConfigReader::read('helpers')->getPath() ?? config('modules.paths.app_folder') . 'Helpers';
24
+        $filePath = GenerateConfigReader::read('helpers')->getPath() ?? config('modules.paths.app_folder').'Helpers';
25 25
 
26
-        return $path . $filePath . '/' . $this->getHelperName() . '.php';
26
+        return $path.$filePath.'/'.$this->getHelperName().'.php';
27 27
     }
28 28
 
29 29
     protected function getTemplateContents(): string
@@ -55,12 +55,12 @@  discard block
 block discarded – undo
55 55
         ];
56 56
     }
57 57
 
58
-    protected function getHelperName(): array|string
58
+    protected function getHelperName(): array | string
59 59
     {
60 60
         return Str::studly($this->argument('name'));
61 61
     }
62 62
 
63
-    private function getClassNameWithoutNamespace(): array|string
63
+    private function getClassNameWithoutNamespace(): array | string
64 64
     {
65 65
         return class_basename($this->getHelperName());
66 66
     }
Please login to merge, or discard this patch.
src/Commands/Make/TraitMakeCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
23 23
 
24
-        $filePath = GenerateConfigReader::read('traits')->getPath() ?? config('modules.paths.app_folder') . 'Traits';
24
+        $filePath = GenerateConfigReader::read('traits')->getPath() ?? config('modules.paths.app_folder').'Traits';
25 25
 
26
-        return $path . $filePath . '/' . $this->getTraitName() . '.php';
26
+        return $path.$filePath.'/'.$this->getTraitName().'.php';
27 27
     }
28 28
 
29 29
     protected function getTemplateContents(): string
@@ -54,12 +54,12 @@  discard block
 block discarded – undo
54 54
         ];
55 55
     }
56 56
 
57
-    protected function getTraitName(): array|string
57
+    protected function getTraitName(): array | string
58 58
     {
59 59
         return Str::studly($this->argument('name'));
60 60
     }
61 61
 
62
-    private function getClassNameWithoutNamespace(): array|string
62
+    private function getClassNameWithoutNamespace(): array | string
63 63
     {
64 64
         return class_basename($this->getTraitName());
65 65
     }
Please login to merge, or discard this patch.
src/Commands/Make/CastMakeCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
23 23
 
24
-        $filePath = GenerateConfigReader::read('casts')->getPath() ?? config('modules.paths.app_folder') . 'Casts';
24
+        $filePath = GenerateConfigReader::read('casts')->getPath() ?? config('modules.paths.app_folder').'Casts';
25 25
 
26
-        return $path . $filePath . '/' . $this->getCastName() . '.php';
26
+        return $path.$filePath.'/'.$this->getCastName().'.php';
27 27
     }
28 28
 
29 29
     protected function getTemplateContents(): string
@@ -54,12 +54,12 @@  discard block
 block discarded – undo
54 54
         ];
55 55
     }
56 56
 
57
-    protected function getCastName(): array|string
57
+    protected function getCastName(): array | string
58 58
     {
59 59
         return Str::studly($this->argument('name'));
60 60
     }
61 61
 
62
-    private function getClassNameWithoutNamespace(): array|string
62
+    private function getClassNameWithoutNamespace(): array | string
63 63
     {
64 64
         return class_basename($this->getCastName());
65 65
     }
Please login to merge, or discard this patch.
src/Commands/Make/ExceptionMakeCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
23 23
 
24
-        $filePath = GenerateConfigReader::read('exceptions')->getPath() ?? config('modules.paths.app_folder') . 'Exceptions';
24
+        $filePath = GenerateConfigReader::read('exceptions')->getPath() ?? config('modules.paths.app_folder').'Exceptions';
25 25
 
26
-        return $path . $filePath . '/' . $this->getExceptionName() . '.php';
26
+        return $path.$filePath.'/'.$this->getExceptionName().'.php';
27 27
     }
28 28
 
29 29
     protected function getTemplateContents(): string
@@ -56,12 +56,12 @@  discard block
 block discarded – undo
56 56
         ];
57 57
     }
58 58
 
59
-    protected function getExceptionName(): array|string
59
+    protected function getExceptionName(): array | string
60 60
     {
61 61
         return Str::studly($this->argument('name'));
62 62
     }
63 63
 
64
-    private function getClassNameWithoutNamespace(): array|string
64
+    private function getClassNameWithoutNamespace(): array | string
65 65
     {
66 66
         return class_basename($this->getExceptionName());
67 67
     }
Please login to merge, or discard this patch.