1 | <?php |
||
7 | class ItemizedPaymentInformation |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var ShipmentCharge |
||
12 | */ |
||
13 | private $transporation; |
||
|
|||
14 | |||
15 | /** |
||
16 | * @var ShipmentCharge |
||
17 | */ |
||
18 | private $dutyAndTax; |
||
19 | |||
20 | /** |
||
21 | * @var bool |
||
22 | */ |
||
23 | private $splitDutyVATIndicator; |
||
24 | |||
25 | public function __construct($attributes = null) |
||
45 | |||
46 | /** |
||
47 | * @param null|DOMDocument $document |
||
48 | * |
||
49 | * @return DOMElement |
||
50 | */ |
||
51 | public function toNode(DOMDocument $document = null) |
||
70 | |||
71 | /** |
||
72 | * @return ShipmentCharge |
||
73 | */ |
||
74 | public function getTransportation() |
||
78 | |||
79 | /** |
||
80 | * @param ShipmentCharge $transportation |
||
81 | * |
||
82 | * @return ItemizedPaymentInformation |
||
83 | */ |
||
84 | public function setTransportation(ShipmentCharge $transportation) |
||
90 | |||
91 | /** |
||
92 | * @return ShipmentCharge |
||
93 | */ |
||
94 | public function getDutyAndTax() |
||
98 | |||
99 | /** |
||
100 | * @param ShipmentCharge $dutyAndTax |
||
101 | * |
||
102 | * @return ItemizedPaymentInformation |
||
103 | */ |
||
104 | public function setDutyAndTax(ShipmentCharge $dutyAndTax) |
||
110 | |||
111 | /** |
||
112 | * @return bool |
||
113 | */ |
||
114 | public function getSplitDutyVATIndicator() |
||
118 | |||
119 | /** |
||
120 | * @param bool $splitDutyVATIndicator |
||
121 | * |
||
122 | * @return ItemizedPaymentInformation |
||
123 | */ |
||
124 | public function setSplityDutyVATIndicator($splitDutyVATIndicator) |
||
130 | } |
||
131 |
This check marks private properties in classes that are never used. Those properties can be removed.