| 1 | <?php |
||
| 7 | trait ButtonsTrait |
||
| 8 | { |
||
| 9 | |||
| 10 | /** @var array Call to Action Buttons */ |
||
| 11 | public $buttons = []; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Add up to 3 call to action buttons. |
||
| 15 | * |
||
| 16 | * @param array $buttons |
||
| 17 | * |
||
| 18 | * @return $this |
||
| 19 | * @throws CouldNotCreateMessage |
||
| 20 | */ |
||
| 21 | public function buttons(array $buttons = []) |
||
| 29 | |||
| 30 | } |