Completed
Push — master ( fd90eb...52b814 )
by Stefan
04:00
created

AutoDutyCode::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 1
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 1
    public function __construct()
18
    {
19 1
    }
20
}
21