fix: ensure correct argument type

This commit is contained in:
Björn Fromme
2024-10-30 15:31:34 +01:00
parent 55778d901b
commit 19cc0872c1
@@ -47,7 +47,7 @@ class FilterService implements SingletonInterface
if (empty($value)) {
return [];
}
return array_map('intval', $value);
return array_map('intval', (array) $value);
});
}
$optionsResolver->setNormalizer('bus', function (Options $options, $value) {