We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 453d4bb commit 2a80572Copy full SHA for 2a80572
src/Response/Lookup/LookupFormat.php
@@ -3,7 +3,7 @@
3
namespace Seven\Api\Response\Lookup;
4
5
class LookupFormat {
6
- protected string $carrier;
+ protected ?string $carrier;
7
protected string $countryCode;
8
protected string $countryIso;
9
protected string $countryName;
@@ -25,7 +25,7 @@ public function __construct(object $data) {
25
$this->success = $data->success;
26
}
27
28
- public function getCarrier(): string {
+ public function getCarrier(): ?string {
29
return $this->carrier;
30
31
0 commit comments