Total Complexity | 8 |
Total Lines | 63 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | class Email extends Record |
||
14 | { |
||
15 | use RecordTrait; |
||
16 | |||
17 | protected $body = ''; |
||
18 | protected $mergeTags = []; |
||
19 | |||
20 | /** |
||
21 | * {@inheritDoc} |
||
22 | */ |
||
23 | public function getFrom() |
||
25 | // TODO: Implement getFrom() method. |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * {@inheritDoc} |
||
30 | */ |
||
31 | public function getSubject(): ?string |
||
32 | { |
||
33 | return ''; |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * {@inheritDoc} |
||
38 | */ |
||
39 | public function getBody() |
||
40 | { |
||
41 | return $this->body; |
||
42 | } |
||
43 | |||
44 | public function setBody(string $body) |
||
45 | { |
||
46 | $this->body = $body; |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * {@inheritDoc} |
||
51 | */ |
||
52 | public function getMergeTags() |
||
53 | { |
||
54 | return $this->mergeTags; |
||
55 | } |
||
56 | |||
57 | public function setMergeTags(array $mergeTags) |
||
60 | } |
||
61 | |||
62 | /** |
||
63 | * {@inheritDoc} |
||
64 | */ |
||
65 | protected function getCustomArgs() |
||
66 | { |
||
67 | // TODO: Implement getCustomArgs() method. |
||
68 | } |
||
69 | |||
70 | /** |
||
71 | * {@inheritDoc} |
||
72 | */ |
||
73 | public function getTos() |
||
76 | } |
||
77 | } |
||
78 |