| 1 | <?php |
||
| 18 | class PlainTextElement implements TextElementInterface, SectionBlockElementInterface, ActionsBlockElementInterface, InputBlockElementInterface |
||
| 19 | { |
||
| 20 | use MessageJsonSerializeTrait; |
||
| 21 | |||
| 22 | /** @var string */ |
||
| 23 | private $type; |
||
| 24 | /** @var string */ |
||
| 25 | private $text; |
||
| 26 | /** @var bool */ |
||
| 27 | private $emoji; |
||
| 28 | |||
| 29 | 8 | public function __construct(string $text) |
|
| 39 | } |
||
| 40 |