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