Open
Description
Currently, all fixers (Datahub::Factory::Fixer
and children) have the attribute fixer
, which in itself has the method fix
that is used to execute the Fix. It would be cleaner and more in line with the rest of the application if Datahub::Factory::Fixer
and children have the method fix
, so we can replace
$fixer->fixer->fix($item);
with
$fixer->fix($item);