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 |
|
44 | |||
45 | public function code($content) : self |
||
51 | |||
52 | public function type($type) : self |
||
58 | |||
59 | public function button($text, $url): self |
||
65 | |||
66 | public function image($image): self |
||
72 | |||
73 | 1 | public function toArray() |
|
77 | } |
||
78 |