#4126 -- Fix type strictness error in DB migration.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-05-05 00:55:28 -05:00
parent f09f5e617a
commit f14077dbb1
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ final class Version20210419043231 extends AbstractMigration
continue;
}
$newSettings[$field] = mb_substr($value, 0, $length, 'UTF-8');
$newSettings[$field] = mb_substr((string)$value, 0, $length, 'UTF-8');
}
foreach ($boolFields as $field) {