芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/bit-alphas-ltd.com/user/project/vendor/vonage/client-core/src/SMS/Message/Binary.php
body = $body; $this->udh = $udh; $this->protocolId = $protocolId; } /** * @return mixed */ public function toArray(): array { $data = [ 'body' => $this->getBody(), 'udh' => $this->getUdh(), ]; if ($this->getProtocolId()) { $data['protocol-id'] = $this->getProtocolId(); } $data = $this->appendUniversalOptions($data); return $data; } public function getBody(): string { return $this->body; } public function getUdh(): string { return $this->udh; } public function getProtocolId(): ?int { return $this->protocolId; } }