. * * @package LibreNMS * @link http://librenms.org * @copyright 2022 Tony Murray * @author Tony Murray */ namespace LibreNMS\Interfaces; interface ValidationFixer { /** * Fix the failed validation result. Take care not to break user installs. * * @return bool */ public function fix(): bool; }