1 | <?php |
||
10 | trait HasButtons |
||
11 | { |
||
12 | /** @var array Call to Action Buttons */ |
||
13 | protected $buttons = []; |
||
14 | |||
15 | /** |
||
16 | * Add up to 3 call to action buttons. |
||
17 | * |
||
18 | * @param array $buttons |
||
19 | * |
||
20 | * @throws CouldNotCreateMessage |
||
21 | * @return $this |
||
22 | */ |
||
23 | public function buttons(array $buttons = []): self |
||
33 | } |
||
34 |