Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php declare(strict_types=1);
2/*
3 * This file is part of Aplus Framework Log Library.
4 *
5 * (c) Natan Felles <natanfelles@gmail.com>
6 *
7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code.
9 */
10namespace Framework\Log;
11
12/**
13 * Enum LogLevel.
14 *
15 * @package log
16 */
17enum LogLevel : int
18{
19    case DEBUG = 0;
20    case INFO = 1;
21    case NOTICE = 2;
22    case WARNING = 3;
23    case ERROR = 4;
24    case CRITICAL = 5;
25    case ALERT = 6;
26    case EMERGENCY = 7;
27}