. * * @link https://www.librenms.org * * @copyright 2020 Thomas Berberich * @author Thomas Berberich */ namespace LibreNMS\Enum; abstract class AlertState { const CLEAR = 0; const ACTIVE = 1; const ACKNOWLEDGED = 2; const WORSE = 3; const BETTER = 4; const RECOVERED = 0; }