1 | <?php |
||
5 | class MsTeamsMessage |
||
6 | { |
||
7 | private $payload = []; |
||
8 | |||
9 | 2 | public function __construct($content = '') |
|
13 | |||
14 | 2 | public static function create($content = ''): self |
|
18 | |||
19 | 1 | public function to($url): self |
|
25 | |||
26 | 2 | public function toUnknown() :bool |
|
30 | |||
31 | 2 | public function title($title) : self |
|
37 | |||
38 | 2 | public function content($content) : self |
|
46 | |||
47 | public function code($content) : self |
||
55 | |||
56 | public function type($type) : self |
||
62 | |||
63 | public function button($text, $url): self |
||
69 | |||
70 | public function image($image): self |
||
78 | |||
79 | 1 | public function toArray() |
|
83 | } |
||
84 |