1
0
mirror of https://github.com/flarum/core.git synced 2025-08-17 22:01:44 +02:00

Fix more incompatibilities with Laravel 5.5

This commit is contained in:
Franz Liedke
2017-12-20 00:20:23 +01:00
parent 8d5132fd5a
commit c8a1a5fcfa
2 changed files with 3 additions and 2 deletions

View File

@@ -58,7 +58,8 @@ class DatabaseMigrationRepository implements MigrationRepositoryInterface
return $this->table()
->where('extension', $extension)
->orderBy('migration', 'asc')
->pluck('migration');
->pluck('migration')
->toArray();
}
/**