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

AutoDutyCode   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 0
dl 0
loc 16
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 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