We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e47e752 commit be0a538Copy full SHA for be0a538
src/Entity/Shipment.php
@@ -4,7 +4,7 @@
4
5
class Shipment
6
{
7
- private ?string $description;
+ private string $description = "";
8
private ReturnService $returnService;
9
private Shipper $shipper;
10
private ShipTo $shipTo;
@@ -15,8 +15,8 @@ class Shipment
15
16
public function __construct()
17
18
- $this->returnService = new ReturnService;
19
- $this->paymentInformation = new PaymentInformation;
+ $this->returnService = new ReturnService();
+ $this->paymentInformation = new PaymentInformation();
20
}
21
22
public function setDescription(string $description): self
0 commit comments