. * * @package LibreNMS * @link http://librenms.org * @copyright 2022 Tony Murray * @author Tony Murray */ namespace LibreNMS\Interfaces; use LibreNMS\ValidationResult; interface Validation { /** * Validate this module. */ public function validate(): ValidationResult; /** * If this validation is enabled or not. * * @return bool */ public function enabled(): bool; }