. * * @link https://www.librenms.org * @copyright 2020 Thomas Berberich * @author Thomas Berberich */ namespace LibreNMS\Enum; abstract class Alert { const UNKNOWN = 0; const OK = 1; const INFO = 2; const NOTICE = 3; const WARNING = 4; const ERROR = 5; const SEVERITIES = ['unknown' => self::UNKNOWN, 'ok' => self::OK, 'info' => self::INFO, 'notice' => self::NOTICE, 'warning' => self::WARNING, 'error' => self::ERROR, ]; }