| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function handle(): int |
||
| 32 | { |
||
| 33 | if (AppInfo::isEnvProduction()) { |
||
| 34 | $this->info("Running database migrations because the app env is 'production'."); |
||
| 35 | Artisan::call('migrate --force'); |
||
| 36 | |||
| 37 | return self::SUCCESS; |
||
| 38 | } |
||
| 39 | |||
| 40 | $this->info("Skipped running database migrations because the app env is NOT 'production'."); |
||
| 41 | |||
| 42 | return self::FAILURE; |
||
| 43 | } |
||
| 45 |