Completed
Pull Request — master (#1735)
by
unknown
06:06
created
src/Commands/PublishTranslationCommand.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 Translations <fg=cyan;options=bold>{$module->getName()}</> Module", function () use ($module) {
27
+        $this->components->task("Publishing Translations <fg=cyan;options=bold>{$module->getName()}</> Module", function() use ($module) {
28 28
             with(new LangPublisher($module))
29 29
                 ->setRepository($this->laravel['modules'])
30 30
                 ->setConsole($this)
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         });
33 33
     }
34 34
 
35
-    function getInfo(): string|null
35
+    function getInfo(): string | null
36 36
     {
37 37
         return 'Publishing module translations ...';
38 38
     }
Please login to merge, or discard this patch.
src/Commands/ModuleDeleteCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@
 block discarded – undo
10 10
     public function executeAction($name): void
11 11
     {
12 12
         $module = $this->getModuleModel($name);
13
-        $this->components->task("Deleting <fg=cyan;options=bold>{$module->getName()}</> Module", function () use ($module) {
13
+        $this->components->task("Deleting <fg=cyan;options=bold>{$module->getName()}</> Module", function() use ($module) {
14 14
             $module->delete();
15 15
         });
16 16
     }
17 17
 
18
-    public function getInfo(): string|null
18
+    public function getInfo(): string | null
19 19
     {
20 20
         return 'deleting module ...';
21 21
     }
Please login to merge, or discard this patch.
src/Commands/PublishConfigurationCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         ]);
31 31
     }
32 32
 
33
-    function getInfo(): string|null
33
+    function getInfo(): string | null
34 34
     {
35 35
         return 'Publishing module config files ...';
36 36
     }
Please login to merge, or discard this patch.