@@ -2,8 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Ups\Entity\Tradeability; |
| 4 | 4 | |
| 5 | -use DomDocument; |
|
| 6 | -use DomElement; |
|
| 7 | 5 | use Ups\Entity\FreightCharges; |
| 8 | 6 | use Ups\NodeInterface; |
| 9 | 7 | |
@@ -205,15 +205,15 @@ |
||
| 205 | 205 | $trackRequest->appendChild($xml->createElement('ReferenceNumber'))->appendChild($xml->createElement('Value', $this->referenceNumber)); |
| 206 | 206 | } |
| 207 | 207 | |
| 208 | - if(null !== $this->shipperNumber) { |
|
| 208 | + if (null !== $this->shipperNumber) { |
|
| 209 | 209 | $trackRequest->appendChild($xml->createElement('ShipperNumber', $this->shipperNumber)); |
| 210 | 210 | } |
| 211 | 211 | |
| 212 | - if(null !== $this->beginDate) { |
|
| 212 | + if (null !== $this->beginDate) { |
|
| 213 | 213 | $trackRequest->appendChild($xml->createElement('BeginDate', $this->beginDate)); |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - if(null !== $this->endDate) { |
|
| 216 | + if (null !== $this->endDate) { |
|
| 217 | 217 | $trackRequest->appendChild($xml->createElement('EndDate', $this->endDate)); |
| 218 | 218 | } |
| 219 | 219 | |