1
0
Fork 0
mirror of synced 2025-04-20 01:21:01 +00:00

fix unserialize problem on step 4

This commit is contained in:
Sergey Chazov 2020-09-01 17:54:47 +03:00
parent eff23eada2
commit 964cd0c21f

View file

@ -650,7 +650,7 @@ class ConfigProvider
*/
protected static function getUnserializedOption($option, $def = 0)
{
return unserialize(static::getOption($option, $def), null);
return unserialize(static::getOption($option, $def), []);
}
/**