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 5d53326 commit 8784c85Copy full SHA for 8784c85
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 $utf8 = null;
22
23
public function __construct(string $text, string ...$to)
24
{
@@ -171,17 +170,6 @@ public function setUdh(?string $udh): self
171
170
return $this;
172
}
173
174
- public function getUtf8(): ?bool
175
- {
176
- return $this->utf8;
177
- }
178
-
179
- public function setUtf8(?bool $utf8): self
180
181
- $this->utf8 = $utf8;
182
- return $this;
183
184
185
public function toArray(): array
186
187
$arr = get_object_vars($this);
0 commit comments