1 | <?php |
||
7 | class ItemizedPaymentInformation |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var bool |
||
12 | */ |
||
13 | private $splitDutyVATIndicator; |
||
14 | |||
15 | /** |
||
16 | * @var transportationShipmentCharge |
||
17 | */ |
||
18 | private $transportationShipmentCharge; |
||
19 | |||
20 | /** |
||
21 | * @var dutiesAndTaxesShipmentCharge |
||
22 | */ |
||
23 | private $dutiesAndTaxesShipmentCharge; |
||
24 | |||
25 | public function __construct($transportationShipmentCharge = null, $dutiesAndTaxesShipmentCharge = null, $splitDutyVATIndicator = null) |
||
37 | |||
38 | /** |
||
39 | * @return transportationShipmentCharge |
||
40 | */ |
||
41 | public function getTransportationShipmentCharge() |
||
45 | |||
46 | /** |
||
47 | * @param ShipmentCharge $shipmentCharge |
||
48 | * @return ItemizedPaymentInformation |
||
49 | */ |
||
50 | public function setShipmentCharge(ShipmentCharge $shipmentCharge) |
||
61 | |||
62 | /** |
||
63 | * @return DutiesAndTaxesShipmentCharge |
||
64 | */ |
||
65 | public function getDutiesAndTaxesShipmentCharge() |
||
69 | |||
70 | /** |
||
71 | * @return bool |
||
72 | */ |
||
73 | public function getSplitDutyVATIndicator() |
||
77 | |||
78 | /** |
||
79 | * @param bool $splitDutyVATIndicator |
||
80 | * @return ItemizedPaymentInformation |
||
81 | */ |
||
82 | public function setSplitDutyVATIndicator($splitDutyVATIndicator) |
||
88 | } |
||
89 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..