1 | <?php |
||
12 | class Message extends Swift_Message implements Swift_Mime_Message |
||
13 | { |
||
14 | protected $mergeTags = []; |
||
15 | protected $custom_args = []; |
||
16 | |||
17 | /** |
||
18 | * @return array |
||
19 | */ |
||
20 | 1 | public function getMergeTags() |
|
21 | { |
||
22 | 1 | return $this->mergeTags; |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param array $mergeTags |
||
27 | */ |
||
28 | public function setMergeTags($mergeTags) |
||
32 | |||
33 | /** |
||
34 | * @param $name |
||
35 | * @param $value |
||
36 | */ |
||
37 | 1 | public function addMergeTag($name, $value) |
|
41 | |||
42 | /** |
||
43 | * @return array |
||
44 | */ |
||
45 | public function getCustomArgs() |
||
49 | |||
50 | /** |
||
51 | * @param array $custom_args |
||
52 | */ |
||
53 | public function setCustomArgs($custom_args) |
||
57 | |||
58 | /** |
||
59 | * @param $key |
||
60 | * @param $value |
||
61 | */ |
||
62 | public function addCustomArg($key, $value) |
||
66 | } |
||
67 |