Completed
Pull Request — master (#197)
by
unknown
05:31
created
src/Entity/ShipmentServiceOptions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
     }
161 161
 
162 162
     /**
163
-     * @param $accessPointCOD
163
+     * @param AccessPointCOD $accessPointCOD
164 164
      * @return $this
165 165
      */
166 166
     public function setAccessPointCOD($accessPointCOD)
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     }
181 181
 
182 182
     /**
183
-     * @return mixed
183
+     * @return InternationalForms
184 184
      */
185 185
     public function getInternationalForms()
186 186
     {
Please login to merge, or discard this patch.
src/TimeInTransit.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      *
42 42
      * @throws Exception
43 43
      *
44
-     * @return TimeInTransitRequest
44
+     * @return TimeInTransitResponse
45 45
      */
46 46
     public function getTimeInTransit(TimeInTransitRequest $shipment)
47 47
     {
Please login to merge, or discard this patch.
src/Entity/Shipment.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -550,9 +550,9 @@
 block discarded – undo
550 550
         $this->deliveryTimeInformation = $deliveryTimeInformation;
551 551
     }
552 552
     
553
-     /**
554
-     * @return ShipmentTotalWeight
555
-     */
553
+        /**
554
+         * @return ShipmentTotalWeight
555
+         */
556 556
     public function getShipmentTotalWeight()
557 557
     {
558 558
         return $this->ShipmentTotalWeight;
Please login to merge, or discard this patch.
src/Entity/ShipmentTotalWeight.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $node = $document->createElement('ShipmentTotalWeight');
38 38
         if ($this->getUnitOfMeasurement()) {
39 39
             $node->appendChild($this->getUnitOfMeasurement()->toNode($document));
40
-           // $node->appendChild($document->createElement('UnitOfMeasurement', $this->getUnitOfMeasurement()));
40
+            // $node->appendChild($document->createElement('UnitOfMeasurement', $this->getUnitOfMeasurement()));
41 41
         }
42 42
 
43 43
         $node->appendChild($document->createElement('Weight', $this->getWeight()));
Please login to merge, or discard this patch.