| 1 | <?php |
||
| 19 | class ImageBlock implements BlockInterface |
||
| 20 | { |
||
| 21 | use MessageJsonSerializeTrait; |
||
| 22 | |||
| 23 | /** @var string */ |
||
| 24 | private $type; |
||
| 25 | /** @var string */ |
||
| 26 | private $imageUrl; |
||
| 27 | /** @var string */ |
||
| 28 | private $altText; |
||
| 29 | /** @var PlainTextElement|null */ |
||
| 30 | private $title; |
||
| 31 | |||
| 32 | public function __construct(string $imageUrl, string $altText, string $title = '') |
||
| 51 | } |
||
| 52 |