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 7589f1f commit 5d53326Copy full SHA for 5d53326
src/Resource/Sms/SmsParams.php
@@ -18,7 +18,6 @@ class SmsParams implements ParamsInterface
18
protected array $to = [];
19
protected ?int $ttl = null;
20
protected ?string $udh = null;
21
- protected ?bool $unicode = null;
22
protected ?bool $utf8 = null;
23
24
public function __construct(string $text, string ...$to)
@@ -172,17 +171,6 @@ public function setUdh(?string $udh): self
172
171
return $this;
173
}
174
175
- public function getUnicode(): ?bool
176
- {
177
- return $this->unicode;
178
- }
179
-
180
- public function setUnicode(?bool $unicode): self
181
182
- $this->unicode = $unicode;
183
- return $this;
184
185
186
public function getUtf8(): ?bool
187
{
188
return $this->utf8;
0 commit comments