| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function handle(): int |
||
| 28 | { |
||
| 29 | if (!config('modules.database_management.enabled')) { |
||
| 30 | $this->info('This feature only works when database management is on.'); |
||
| 31 | |||
| 32 | return false; |
||
| 33 | } |
||
| 34 | $this->laravel['modules']->migrateFileToDatabase($this->option('force')); |
||
| 35 | $this->info('Migrated.'); |
||
| 36 | |||
| 37 | return 0; |
||
| 38 | } |
||
| 39 | |||
| 52 |