diff options
author | Joas Schilling <coding@schilljs.com> | 2017-06-09 16:45:12 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-07-05 13:02:16 +0200 |
commit | 4e5cd1efea7c522ebd763dd3b96eb5f8c0e8407b (patch) | |
tree | a184e5b30726048e278f504ebfaa08986a716235 /lib | |
parent | 7a3d83d63038e5db0af790b827b73ec7335a6961 (diff) | |
download | nextcloud-server-4e5cd1efea7c522ebd763dd3b96eb5f8c0e8407b.tar.gz nextcloud-server-4e5cd1efea7c522ebd763dd3b96eb5f8c0e8407b.zip |
Fix tests of CodeChecker and MigrationService
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/DB/MigrationService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/DB/MigrationService.php b/lib/private/DB/MigrationService.php index e4a001c6d97..44412a967fb 100644 --- a/lib/private/DB/MigrationService.php +++ b/lib/private/DB/MigrationService.php @@ -155,7 +155,7 @@ class MigrationService { */ public function getAvailableVersions() { $this->ensureMigrationsAreLoaded(); - return array_keys($this->migrations); + return array_map('strval', array_keys($this->migrations)); } protected function findMigrations() { |