1 | <?php |
||
7 | class ItemizedPaymentInformation |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var splitDutyVATIndicator |
||
12 | */ |
||
13 | private $splitDutyVATIndicator; |
||
14 | private $transportationShipmentCharge = null; |
||
15 | private $dutiesAndTaxesShipmentCharge = null; |
||
16 | |||
17 | public function __construct($attributes = null) |
||
20 | |||
21 | /** |
||
22 | * @return transportationShipmentCharge |
||
23 | */ |
||
24 | public function getTransportationShipmentCharge() |
||
28 | |||
29 | /** |
||
30 | * @param ShipmentCharge $shipmentCharge |
||
31 | * @return ItemizedPaymentInformation |
||
32 | */ |
||
33 | public function setShipmentCharge(ShipmentCharge $shipmentCharge) |
||
44 | |||
45 | /** |
||
46 | * @return dutiesAndTaxesShipmentCharge |
||
47 | */ |
||
48 | public function getDutiesAndTaxesShipmentCharge() |
||
52 | |||
53 | /** |
||
54 | * @return splitDutyVATIndicator |
||
55 | */ |
||
56 | public function getSplitDutyVATIndicator() |
||
60 | |||
61 | /** |
||
62 | * @param splitDutyVATIndicator $splitDutyVATIndicator |
||
63 | * @return ItemizedPaymentInformation |
||
64 | */ |
||
65 | public function setSplitDutyVATIndicator($splitDutyVATIndicator) |
||
71 | } |
||
72 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.