Passed
Branch scrutinizer (391c16)
by Wanderson
01:43
created

AlertSuccess::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Win\Alert;
4
5
class AlertSuccess extends Alert {
6
7
	const TYPE = 'success';
8
9
}
10