Conditions | 3 |
Paths | 3 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace crocodicstudio\crudbooster\commands; |
||
31 | public function handle() |
||
32 | { |
||
33 | $this->info($this->description); |
||
34 | $option = $this->option("module"); |
||
35 | if($option == "ALL") { |
||
36 | $tables = DB::connection()->getDoctrineSchemaManager()->listTableNames(); |
||
37 | foreach($tables as $table) { |
||
38 | $this->generate($table); |
||
39 | } |
||
48 |