Skip to content

Commit 8784c85

Browse files
committed
remove sms parameter utf8
1 parent 5d53326 commit 8784c85

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/Resource/Sms/SmsParams.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class SmsParams implements ParamsInterface
1818
protected array $to = [];
1919
protected ?int $ttl = null;
2020
protected ?string $udh = null;
21-
protected ?bool $utf8 = null;
2221

2322
public function __construct(string $text, string ...$to)
2423
{
@@ -171,17 +170,6 @@ public function setUdh(?string $udh): self
171170
return $this;
172171
}
173172

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-
185173
public function toArray(): array
186174
{
187175
$arr = get_object_vars($this);

0 commit comments

Comments
 (0)