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