| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function handle() |
||
| 35 | { |
||
| 36 | $this->info('Laravel social package has added some migration files. Your migrations status is:'); |
||
| 37 | $this->call('migrate:status'); |
||
| 38 | if($this->confirm('Do you want to run migrations?')) { |
||
| 39 | $this->call('migrate'); |
||
| 40 | } |
||
| 41 | $this->call('acacha:social'); |
||
| 42 | } |
||
| 43 | } |
||
| 44 |