File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,9 @@ class Lookup extends Base
58
58
protected $ type ;
59
59
60
60
/**
61
- * An associative array containing references to this phone number in several different formats.
61
+ * An object containing references to this phone number in several formats.
62
62
*
63
- * @var array
63
+ * @var stdClass
64
64
*
65
65
* e164: The phone number in E.164 format.
66
66
* international: The phone number in international format.
@@ -72,7 +72,7 @@ class Lookup extends Base
72
72
/**
73
73
* The most recent HLR object. If no such HLR objects exists, this array won't be returned.
74
74
*
75
- * @var array
75
+ * @var stdClass
76
76
*
77
77
* id(string): An unique random ID which is created on the MessageBird platform.
78
78
* network(int): The MCCMNC code of the network provider.
@@ -108,19 +108,19 @@ public function getType(): ?string
108
108
return $ this ->type ;
109
109
}
110
110
111
- public function getFormats (): ?array
111
+ public function getFormats (): ?stdClass
112
112
{
113
113
return $ this ->formats ;
114
114
}
115
115
116
- public function getHLR (): ?array
116
+ public function getHLR (): ?stdClass
117
117
{
118
118
return $ this ->hlr ;
119
119
}
120
120
121
121
/**
122
122
* @deprecated 2.2.0 No longer used by internal code, please switch to {@see self::loadFromStdclass()}
123
- *
123
+ *
124
124
* @param mixed $object
125
125
*
126
126
* @return $this
You can’t perform that action at this time.
0 commit comments