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