Make yaml_decode only return array, again

This commit is contained in:
Newb I the Newbd
2019-06-24 20:34:38 +02:00
committed by Matias Griese
parent 140c9a941f
commit e16c81516e

View File

@@ -97,7 +97,7 @@ class YamlFormatter extends AbstractFormatter
@ini_set('yaml.decode_php', $saved);
if ($decoded !== false) {
return $decoded;
return (array) $decoded;
}
}