| 1 | <?php |
||
| 20 | class SectionBlock implements BlockInterface |
||
| 21 | { |
||
| 22 | use MessageJsonSerializeTrait; |
||
| 23 | |||
| 24 | /** @var string */ |
||
| 25 | private $type; |
||
| 26 | /** @var TextElementInterface|null */ |
||
| 27 | private $text; |
||
| 28 | /** @var SectionBlockElementInterface|null */ |
||
| 29 | private $accessory; |
||
| 30 | /** @var array|TextElementInterface[] */ |
||
| 31 | private $fields; |
||
| 32 | |||
| 33 | 3 | public function __construct(TextElementInterface $text, SectionBlockElementInterface $accessory = null, TextElementInterface ...$fields) |
|
| 40 | } |
||
| 41 |