LogLevel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 0
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
1
<?php
2
/*
3
 * This file is part of Yolk - Gamer Network's PHP Framework.
4
 *
5
 * Copyright (c) 2014 Gamer Network Ltd.
6
 * 
7
 * Distributed under the MIT License, a copy of which is available in the
8
 * LICENSE file that was bundled with this package, or online at:
9
 * https://github.com/gamernetwork/yolk-logger
10
 */
11
12
namespace yolk\log;
13
14
class LogLevel {
15
   
16
	const EMERGENCY = 1;
17
	const ALERT     = 2;
18
	const CRITICAL  = 3;
19
	const ERROR     = 4;
20
	const WARNING   = 5;
21
	const NOTICE    = 6;
22
	const INFO      = 7;
23
	const DEBUG     = 8;
24
25
	private function __construct() {}
26
27
}
28
29
// EOF