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:58:52 +03:00 committed by Павел
parent 8a7f07b1f2
commit 3cef545dd2

View file

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