linkmobility-php-client/src/ValueObject/SmsBinaryMessage.php

32 lines
583 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace D3\LinkmobilityClient\ValueObject;
use Phlib\SmsLength\SmsLength;
class SmsBinaryMessage extends SmsMessageAbstract
{
/**
* @param string $message
*/
public function __construct(string $message)
{
2022-07-13 10:41:23 +02:00
parent::__construct($message);
2022-07-11 15:06:18 +02:00
$this->getSmsLength()->validate();
}
/**
2022-07-11 15:06:18 +02:00
* @return array|false
*/
public function getMessageContent()
{
return str_split(
2022-07-11 15:06:18 +02:00
base64_encode($this->get()),
SmsLength::MAXIMUM_CHARACTERS_UCS2_SINGLE
);
}
}