Passed
Push — master ( 335c74...ca5aae )
by Pierre
02:52
created

AutoDutyCode::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2
1
<?php
2
3
namespace Ups\Entity;
4
5
class AutoDutyCode
6
{
7
    const ADC_DUTIABLE = '01';
8
    const ADC_NONDUTIABLE = '02';
9
    const ADC_LOWVALUE = '03';
10
    const ADC_COURIERREMISSION = '04';
11
    const ADC_GIFT = '05';
12
    const ADC_MILITARY = '06';
13
    const ADC_EXCEPTION = '07';
14
    const ADC_LINERELEASE = '08';
15
    const ADC_SECTION321LOWVALUE = '09';
16
17
    public function __construct()
18
    {
19
    }
20
}
21