| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 12 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 40 | * @return Yarak\Migrations\MigrationCreator  | 
            ||
| 41 | */  | 
            ||
| 42 | protected function getCreator()  | 
            ||
| 43 |     { | 
            ||
| 44 |         $migratorType = ucfirst($this->config->get('migratorType')); | 
            ||
| 45 | |||
| 46 |         $name = "Yarak\\Migrations\\{$migratorType}\\{$migratorType}MigrationCreator"; | 
            ||
| 47 | |||
| 48 | return new $name($this->getOutput());  | 
            ||
| 49 | }  | 
            ||
| 50 | }  | 
            ||
| 51 |