Files

52 lines
971 B
PHP
Raw Permalink Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace crmeb\services\wechat\message;
/**
* text消息
* Class Text
* @author 等风来
* @email 136327134@qq.com
* @date 2023/9/14
* @package crmeb\services\wechat\message
*/
class Text extends Message
{
/**
* Message type.
*
* @var string
*/
protected string $type = 'text';
/**
* Properties.
*
* @var array
*/
protected array $properties = ['content'];
/**
* Text constructor.
*
* @param string $content
*/
public function __construct(string $content = '')
{
parent::__construct(compact('content'));
}
/**
* @return array
*/
public function toXmlArray(): array
{
return [
'Content' => $this->get('content'),
];
}
}