| 1 | <?php |
||
| 20 | class ConfirmationDialogObject implements MessageInterface |
||
| 21 | { |
||
| 22 | use MessageJsonSerializeTrait; |
||
| 23 | |||
| 24 | /** @var PlainTextElement */ |
||
| 25 | private $title; |
||
| 26 | /** @var TextElementInterface */ |
||
| 27 | private $text; |
||
| 28 | /** @var PlainTextElement */ |
||
| 29 | private $confirm; |
||
| 30 | /** @var PlainTextElement */ |
||
| 31 | private $deny; |
||
| 32 | |||
| 33 | 2 | public function __construct(string $title, TextElementInterface $text, string $confirm, string $deny) |
|
| 53 | } |
||
| 54 |