| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 50 | public function handle() |
||
| 51 | { |
||
| 52 | $bar = $this->output->createProgressBar(3); |
||
| 53 | $bar->setOverwrite(true); |
||
| 54 | $bar->start(); |
||
| 55 | |||
| 56 | Artisan::call('laragen:make'); |
||
| 57 | |||
| 58 | $this->composer->dumpOptimized(); |
||
| 59 | |||
| 60 | $bar->advance(); |
||
| 61 | Artisan::call('laragen:migrate'); |
||
| 62 | |||
| 63 | $bar->advance(); |
||
| 64 | Artisan::call('laragen:seed'); |
||
| 65 | $bar->finish(); |
||
| 66 | $this->line("\n"); |
||
| 67 | $this->line('Code generation, migration, seeding successfull.'); |
||
| 68 | } |
||
| 70 |