We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf74a3 commit 0138d10Copy full SHA for 0138d10
1 file changed
config.dist.php
@@ -64,6 +64,9 @@ static function (string $value): ?string {
64
} catch (Exception $e) {
65
// ...
66
}
67
+ } elseif (!is_string($unserialized_value) || !is_numeric($unserialized_value)) {
68
+ // for weird edge cases when data are not string/int
69
+ $unserialized_value = serialize($unserialized_value);
70
71
72
return (string) $unserialized_value;
0 commit comments