Passed
Push — master ( c12bfb...46822b )
by Ferry
03:30
created
src/commands/Generate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
     {
33 33
         $this->info($this->description);
34 34
         $option = $this->option("module");
35
-        if($option == "ALL") {
35
+        if ($option == "ALL") {
36 36
             $tables = DB::connection()->getDoctrineSchemaManager()->listTableNames();
37
-            foreach($tables as $table) {
37
+            foreach ($tables as $table) {
38 38
                 $this->generate($table);
39 39
             }
40 40
         }
Please login to merge, or discard this patch.
src/commands/DeveloperUser.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
      */
31 31
     public function handle()
32 32
     {
33
-        if($this->option("password") == "AUTO") {
33
+        if ($this->option("password") == "AUTO") {
34 34
             $password = Str::random(16);
35
-        }else{
35
+        } else {
36 36
             $password = $this->option("password");
37 37
         }
38 38
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         if($this->option("password") == "AUTO") {
34 34
             $password = Str::random(16);
35
-        }else{
35
+        } else{
36 36
             $password = $this->option("password");
37 37
         }
38 38
 
Please login to merge, or discard this patch.