| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Migrator extends IlluminateMigrator |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Get all of the migration files in a given path, including |
||
| 13 | * those in a nested folder. |
||
| 14 | * |
||
| 15 | * @param string|array $paths |
||
| 16 | * @return array |
||
| 17 | */ |
||
| 18 | public function getMigrationFiles($paths) |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Finds migration files recursively, limited to one level. |
||
| 31 | * |
||
| 32 | * @param string $path |
||
| 33 | * |
||
| 34 | * @return array |
||
| 35 | */ |
||
| 36 | protected function findMigrationFiles($path) |
||
| 41 |