You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/DataAccess/Logging/Severity.php

11 lines
142 B
PHP

<?php
namespace DataAccess\Logging;
class Severity {
const DEBUG = 0;
const INFO = 1;
const WARNING = 2;
const ERROR = 3;
}