librenms/librenms

View on GitHub
LibreNMS/Enum/Severity.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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;
}