Completed
Push — master ( e9bffe...e92b96 )
by
unknown
06:13
created
src/Commands/ModuleMakeCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,10 +76,10 @@
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-    * Get module type .
80
-    *
81
-    * @return string
82
-    */
79
+     * Get module type .
80
+     *
81
+     * @return string
82
+     */
83 83
     private function getModuleType()
84 84
     {
85 85
         $isPlain = $this->option('plain');
Please login to merge, or discard this patch.
src/Commands/UpdateCommand.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
         if ($name instanceof Module) {
62 62
             $module = $name;
63
-        }else {
63
+        } else {
64 64
             $module = $this->laravel['modules']->findOrFail($name);
65 65
         }
66 66
 
Please login to merge, or discard this patch.
src/Commands/DisableCommand.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     {
66 66
         if ($name instanceof Module) {
67 67
             $module = $name;
68
-        }else {
68
+        } else {
69 69
             $module = $this->laravel['modules']->findOrFail($name);
70 70
         }
71 71
 
Please login to merge, or discard this patch.
src/Commands/EnableCommand.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         if ($name instanceof Module) {
68 68
             $module = $name;
69
-        }else {
69
+        } else {
70 70
             $module = $this->laravel['modules']->findOrFail($name);
71 71
         }
72 72
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
             $module->enable();
75 75
 
76 76
             $this->components->info("Module [{$module}] enabled successful.");
77
-        }else {
77
+        } else {
78 78
             $this->components->warn("Module [{$module}] has already enabled.");
79 79
         }
80 80
 
Please login to merge, or discard this patch.