Files
librenms-librenms/LibreNMS/Enum/Severity.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
177 B
PHP
Raw Normal View History

<?php
namespace LibreNMS\Enum;
enum Severity: int
{
case Unknown = 0;
case Ok = 1;
case Info = 2;
case Notice = 3;
case Warning = 4;
case Error = 5;
}