remove unused argument

The constructor expects only three arguments.
This commit is contained in:
Christian Flothmann 2021-01-13 10:37:20 +01:00
parent 73a70acb2b
commit b6d9c6c2c0

View File

@ -29,8 +29,7 @@ class PercentType extends AbstractType
$builder->addViewTransformer(new PercentToLocalizedStringTransformer(
$options['scale'],
$options['type'],
$options['rounding_mode'],
false
$options['rounding_mode']
));
}