@@ -32,9 +32,9 @@ |
||
| 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 | } |
@@ -30,9 +30,9 @@ |
||
| 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 | |
@@ -32,7 +32,7 @@ |
||
| 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 | |