Skip to content

Commit 2a80572

Browse files
authored
fix #12
1 parent 453d4bb commit 2a80572

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Response/Lookup/LookupFormat.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Seven\Api\Response\Lookup;
44

55
class LookupFormat {
6-
protected string $carrier;
6+
protected ?string $carrier;
77
protected string $countryCode;
88
protected string $countryIso;
99
protected string $countryName;
@@ -25,7 +25,7 @@ public function __construct(object $data) {
2525
$this->success = $data->success;
2626
}
2727

28-
public function getCarrier(): string {
28+
public function getCarrier(): ?string {
2929
return $this->carrier;
3030
}
3131

0 commit comments

Comments
 (0)