Completed
Pull Request — master (#88)
by
unknown
04:47
created
src/Tracking.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -205,15 +205,15 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.