1 | <?php |
||
31 | class DetailItem implements IDetailItem |
||
32 | { |
||
33 | use TPayload, TItem, TPhysicalAddress { |
||
34 | TPhysicalAddress::getLines as getAddressLines; |
||
35 | TPhysicalAddress::setLines as setAddressLines; |
||
36 | TPhysicalAddress::getCity as getAddressCity; |
||
37 | TPhysicalAddress::setCity as setAddressCity; |
||
38 | TPhysicalAddress::getMainDivision as getAddressMainDivision; |
||
39 | TPhysicalAddress::setMainDivision as setAddressMainDivision; |
||
40 | TPhysicalAddress::getCountryCode as getAddressCountryCode; |
||
41 | TPhysicalAddress::setCountryCode as setAddressCountryCode; |
||
42 | TPhysicalAddress::getPostalCode as getAddressPostalCode; |
||
43 | TPhysicalAddress::setPostalCode as setAddressPostalCode; |
||
44 | } |
||
45 | |||
46 | const ROOT_NODE = 'InventoryDetail'; |
||
47 | const SHIP_FROM_ADDRESS = 'ShipFromAddress'; |
||
48 | |||
49 | /** @var DateTime */ |
||
50 | protected $deliveryWindowFromDate; |
||
51 | /** @var DateTime */ |
||
52 | protected $deliveryWindowToDate; |
||
53 | /** @var DateTime */ |
||
54 | protected $shippingWindowFromDate; |
||
55 | /** @var DateTime */ |
||
56 | protected $shippingWindowToDate; |
||
57 | /** @var DateTime */ |
||
58 | protected $deliveryEstimateCreationTime; |
||
59 | /** @var DateTime */ |
||
60 | protected $deliveryEstimateDisplayFlag; |
||
61 | /** @var string */ |
||
62 | protected $deliveryEstimateMessage; |
||
63 | |||
64 | /** |
||
65 | * @param IValidatorIterator |
||
66 | * @param ISchemaValidator |
||
67 | * @param IPayloadMap |
||
68 | * @param LoggerInterface |
||
69 | * @param IPayload |
||
70 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
||
71 | */ |
||
72 | public function __construct( |
||
73 | IValidatorIterator $validators, |
||
74 | ISchemaValidator $schemaValidator, |
||
75 | IPayloadMap $payloadMap, |
||
76 | LoggerInterface $logger, |
||
77 | IPayload $parentPayload = null |
||
78 | ) { |
||
79 | $this->logger = $logger; |
||
|
|||
80 | $this->validators = $validators; |
||
81 | $this->schemaValidator = $schemaValidator; |
||
82 | $this->payloadMap = $payloadMap; |
||
83 | $this->parentPayload = $parentPayload; |
||
84 | $this->payloadFactory = new PayloadFactory; |
||
85 | |||
86 | $this->extractionPaths = [ |
||
87 | 'itemId' => 'string(@itemId)', |
||
88 | 'id' => 'string(@lineId)', |
||
89 | 'deliveryWindowFromDate' => 'string(x:DeliveryEstimate/x:DeliveryWindow/x:From)', |
||
90 | 'deliveryWindowToDate' => 'string(x:DeliveryEstimate/x:DeliveryWindow/x:To)', |
||
91 | 'shippingWindowFromDate' => 'string(x:DeliveryEstimate/x:ShippingWindow/x:From)', |
||
92 | 'shippingWindowToDate' => 'string(x:DeliveryEstimate/x:ShippingWindow/x:To)', |
||
93 | 'deliveryEstimateCreationTime' => 'string(x:DeliveryEstimate/x:CreationTime)', |
||
94 | 'deliveryEstimateDisplayFlag' => 'string(x:DeliveryEstimate/x:Display)', |
||
95 | 'city' => 'string(x:ShipFromAddress/x:City)', |
||
96 | 'countryCode' => 'string(x:ShipFromAddress/x:CountryCode)', |
||
97 | ]; |
||
98 | $this->optionalExtractionPaths = [ |
||
99 | 'deliveryEstimateMessage' => 'x:DeliveryEstimate/x:Message', |
||
100 | 'mainDivision' => 'x:ShipFromAddress/x:MainDivision', |
||
101 | 'postalCode' => 'x:ShipFromAddress/x:PostalCode', |
||
102 | ]; |
||
103 | $this->addressLinesExtractionMap = [ |
||
104 | [ |
||
105 | 'property' => 'lines', |
||
106 | 'xPath' => 'x:ShipFromAddress/*[starts-with(name(), "Line")]' |
||
107 | ], |
||
108 | ]; |
||
109 | } |
||
110 | |||
111 | /** |
||
112 | * The earliest date when the order line item is expected to arrive at the ship-to address. |
||
113 | * |
||
114 | * @return DateTime |
||
115 | */ |
||
116 | public function getDeliveryWindowFromDate() |
||
120 | |||
121 | /** |
||
122 | * @param DateTime |
||
123 | * @return self |
||
124 | */ |
||
125 | public function setDeliveryWindowFromDate(DateTime $deliveryWindowFromDate) |
||
126 | { |
||
127 | $this->deliveryWindowFromDate = $deliveryWindowFromDate; |
||
128 | return $this; |
||
129 | } |
||
130 | |||
131 | /** |
||
132 | * The latest date when the order line item is expected to arrive at the ship-to address. |
||
133 | * |
||
134 | * @return DateTime |
||
135 | */ |
||
136 | public function getDeliveryWindowToDate() |
||
140 | |||
141 | /** |
||
142 | * @param DateTime |
||
143 | * @return self |
||
144 | */ |
||
145 | public function setDeliveryWindowToDate(DateTime $deliveryWindowToDate) |
||
146 | { |
||
147 | $this->deliveryWindowToDate = $deliveryWindowToDate; |
||
148 | return $this; |
||
149 | } |
||
150 | |||
151 | /** |
||
152 | * The earliest date when the order line item is expected to leave the fulfillment node. |
||
153 | * |
||
154 | * @return DateTime |
||
155 | */ |
||
156 | public function getShippingWindowFromDate() |
||
160 | |||
161 | /** |
||
162 | * @param DateTime |
||
163 | * @return self |
||
164 | */ |
||
165 | public function setShippingWindowFromDate(DateTime $shippingWindowFromDate) |
||
166 | { |
||
167 | $this->shippingWindowFromDate = $shippingWindowFromDate; |
||
168 | return $this; |
||
169 | } |
||
170 | |||
171 | /** |
||
172 | * The latest date when the order line item is expected to leave the fulfillment node. |
||
173 | * |
||
174 | * @return DateTime |
||
175 | */ |
||
176 | public function getShippingWindowToDate() |
||
180 | |||
181 | /** |
||
182 | * @param DateTime |
||
183 | * @return self |
||
184 | */ |
||
185 | public function setShippingWindowToDate(DateTime $shippingWindowToDate) |
||
186 | { |
||
187 | $this->shippingWindowToDate = $shippingWindowToDate; |
||
188 | return $this; |
||
189 | } |
||
190 | |||
191 | /** |
||
192 | * The date-time when this delivery estimate was created |
||
193 | * |
||
194 | * @return DateTime |
||
195 | */ |
||
196 | public function getDeliveryEstimateCreationTime() |
||
200 | |||
201 | /** |
||
202 | * @param DateTime |
||
203 | * @return self |
||
204 | */ |
||
205 | public function setDeliveryEstimateCreationTime(DateTime $deliveryEstimateCreationTime) |
||
206 | { |
||
207 | $this->deliveryEstimateCreationTime = $deliveryEstimateCreationTime; |
||
208 | return $this; |
||
209 | } |
||
210 | |||
211 | /** |
||
212 | * Indicates if the delivery estimate should be displayed. |
||
213 | * |
||
214 | * @return DateTime |
||
215 | */ |
||
216 | public function getDeliveryEstimateDisplayFlag() |
||
220 | |||
221 | /** |
||
222 | * @param DateTime |
||
223 | * @return self |
||
224 | */ |
||
225 | public function setDeliveryEstimateDisplayFlag(DateTime $deliveryEstimateDisplayFlag) |
||
226 | { |
||
227 | $this->deliveryEstimateDisplayFlag = $deliveryEstimateDisplayFlag; |
||
228 | return $this; |
||
229 | } |
||
230 | |||
231 | /** |
||
232 | * not currently used. |
||
233 | * |
||
234 | * restrictions: optional |
||
235 | * @return string |
||
236 | */ |
||
237 | public function getDeliveryEstimateMessage() |
||
241 | |||
242 | /** |
||
243 | * @param string |
||
244 | * @return self |
||
245 | */ |
||
246 | public function setDeliveryEstimateMessage($deliveryEstimateMessage) |
||
247 | { |
||
248 | $this->deliveryEstimateMessage = $deliveryEstimateMessage; |
||
249 | return $this; |
||
250 | } |
||
251 | |||
252 | protected function serializeContents() |
||
253 | { |
||
254 | return $this->serializeDeliveryEstimate() |
||
255 | . $this->serializePhysicalAddress(); |
||
256 | } |
||
257 | |||
258 | protected function serializeDeliveryEstimate() |
||
259 | { |
||
260 | return '<DeliveryEstimate>' |
||
261 | . '<DeliveryWindow>' |
||
262 | . $this->serializeDateTime('From', $this->getDeliveryWindowFromDate()) |
||
263 | . $this->serializeDateTime('To', $this->getDeliveryWindowToDate()) |
||
264 | . '</DeliveryWindow>' |
||
265 | . '<ShippingWindow>' |
||
266 | . $this->serializeDateTime('From', $this->getShippingWindowFromDate()) |
||
267 | . $this->serializeDateTime('To', $this->getShippingWindowToDate()) |
||
268 | . '</ShippingWindow>' |
||
269 | . $this->serializeDateTime('CreationTime', $this->getDeliveryEstimateCreationTime()) |
||
270 | . "<Display>{$this->convertBooleanToString($this->getDeliveryEstimateDisplayFlag())}</Display>" |
||
271 | . $this->serializeOptionalValue('Message', $this->getDeliveryEstimateMessage()) |
||
272 | . '</DeliveryEstimate>'; |
||
273 | } |
||
274 | |||
275 | protected function serializeDateTime($nodeName, $dateTime) |
||
276 | { |
||
277 | return is_null($dateTime) ? "<{$nodeName}/>" : |
||
278 | "<{$nodeName}>{$dateTime->format('c')}</{$nodeName}>"; |
||
279 | } |
||
280 | |||
281 | protected function deserializeExtra() |
||
297 | |||
298 | protected function getPhysicalAddressRootNodeName() |
||
302 | |||
303 | protected function getRootAttributes() |
||
304 | { |
||
305 | return [ |
||
306 | 'itemId' => $this->getItemId(), |
||
307 | 'lineId' => $this->getId(), |
||
308 | ]; |
||
309 | } |
||
310 | |||
311 | protected function getRootNodeName() |
||
315 | |||
316 | protected function getXmlNamespace() |
||
320 | } |
||
321 |
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..