| 1 | <?php |
||
| 19 | class Text extends Message |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Message type. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected $type = 'text'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Properties. |
||
| 30 | * |
||
| 31 | * @var array |
||
| 32 | */ |
||
| 33 | protected $properties = ['content']; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Text constructor. |
||
| 37 | * |
||
| 38 | * @param string $content |
||
| 39 | */ |
||
| 40 | public function __construct(string $content) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return array |
||
| 47 | */ |
||
| 48 | public function toXmlArray() |
||
| 54 | } |
||
| 55 |