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 0dea1c9 commit 286b274Copy full SHA for 286b274
src/Billing.php
@@ -49,7 +49,7 @@ class Billing implements BillingInterface
49
/** @inheritDoc */
50
public function getFirstName(): ?string
51
{
52
- return $this->firstName;
+ return $this->firstName ?? null;
53
}
54
55
@@ -62,7 +62,7 @@ public function setFirstName(string $firstName): self
62
63
public function getLastName(): ?string
64
65
- return $this->lastName;
+ return $this->lastName ?? null;
66
67
68
@@ -75,7 +75,7 @@ public function setLastName(string $lastName): self
75
76
public function getEmail(): ?string
77
78
- return $this->email;
+ return $this->email ?? null;
79
80
81
0 commit comments