Test Failed
Pull Request — master (#196)
by
unknown
02:46
created
src/Entity/Shipment.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -551,7 +551,7 @@
 block discarded – undo
551 551
     }
552 552
     
553 553
      /**
554
-     * @return ShipmentTotalWeight
554
+     * @return InvoiceLineTotal
555 555
      */
556 556
     public function getShipmentTotalWeight()
557 557
     {
Please login to merge, or discard this 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.