| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | protected function getCreator() |
||
| 49 | { |
||
| 50 | $config = Config::getInstance($this->configArray); |
||
| 51 | |||
| 52 | $migratorType = ucfirst($config->get('migratorType')); |
||
| 53 | |||
| 54 | $name = "Yarak\\Migrations\\{$migratorType}\\{$migratorType}MigrationCreator"; |
||
| 55 | |||
| 56 | return new $name($config, $this->getOutput()); |
||
| 57 | } |
||
| 58 | } |
||
| 59 |