| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | protected function fire() |
||
| 44 | { |
||
| 45 | $toRun = $this->migrator->getMigrationsToRun(); |
||
| 46 | |||
| 47 | if (!empty($toRun)) { |
||
| 48 | foreach ($toRun as $migration) { |
||
| 49 | $this->migrator->runMigration($migration); |
||
| 50 | $this->message("<info>Migrated:</info> {$migration}.php"); |
||
| 51 | } |
||
| 52 | } else { |
||
| 53 | $this->info('Nothing to migrate'); |
||
| 54 | } |
||
| 55 | } |
||
| 56 | } |
||
| 57 |