Skip to content

Commit

Permalink
fix #12
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiez authored May 21, 2024
1 parent 453d4bb commit 2a80572
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Response/Lookup/LookupFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Seven\Api\Response\Lookup;

class LookupFormat {
protected string $carrier;
protected ?string $carrier;
protected string $countryCode;
protected string $countryIso;
protected string $countryName;
Expand All @@ -25,7 +25,7 @@ public function __construct(object $data) {
$this->success = $data->success;
}

public function getCarrier(): string {
public function getCarrier(): ?string {
return $this->carrier;
}

Expand Down

0 comments on commit 2a80572

Please sign in to comment.