Skip to content

Commit be0a538

Browse files
authored
Update Shipment.php
1 parent e47e752 commit be0a538

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Entity/Shipment.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class Shipment
66
{
7-
private ?string $description;
7+
private string $description = "";
88
private ReturnService $returnService;
99
private Shipper $shipper;
1010
private ShipTo $shipTo;
@@ -15,8 +15,8 @@ class Shipment
1515

1616
public function __construct()
1717
{
18-
$this->returnService = new ReturnService;
19-
$this->paymentInformation = new PaymentInformation;
18+
$this->returnService = new ReturnService();
19+
$this->paymentInformation = new PaymentInformation();
2020
}
2121

2222
public function setDescription(string $description): self

0 commit comments

Comments
 (0)