Completed
Push — master ( 6424ee...f103eb )
by Nicolas
18s queued 11s
created
src/Commands/ModuleMakeCommand.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -75,11 +75,11 @@
 block discarded – undo
75 75
         ];
76 76
     }
77 77
 
78
-     /**
79
-     * Get module type .
80
-     *
81
-     * @return string
82
-     */
78
+        /**
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.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -90,11 +90,9 @@
 block discarded – undo
90 90
         }
91 91
         if( $isPlain ){
92 92
             return 'plain';
93
-        }
94
-        elseif( $isApi ){
93
+        } elseif( $isApi ){
95 94
             return 'api';
96
-        }
97
-        else{
95
+        } else{
98 96
             return 'web';
99 97
         }
100 98
     }
Please login to merge, or discard this patch.