Completed
Push — master ( f7bed6...7b8b9a )
by Gabriel
05:48 queued 11s
created

Email::getBody()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Nip\Mail\Tests\Fixtures\Models\Emails;
4
5
use Nip\Mail\Models\Mailable\RecordTrait;
6
7
/**
8
 * Class Email
9
 * @package Nip\Mail\Tests\Fixtures\Models\Emails
10
 */
11
class Email
12
{
13
    use RecordTrait;
14
15
    protected $body = '';
16
    protected $mergeTags = [];
17
18
    /**
19
     * @inheritDoc
20
     */
21
    public function getFrom()
22
    {
23
        // TODO: Implement getFrom() method.
24
    }
25
26
    /**
27
     * @inheritDoc
28
     */
29
    public function getSubject()
30
    {
31
        // TODO: Implement getSubject() method.
32
    }
33
34
    /**
35
     * @inheritDoc
36
     */
37
    public function getBody()
38
    {
39
        return $this->body;
40
    }
41
42
    /**
43
     * @param string $body
44
     */
45
    public function setBody(string $body)
46
    {
47
        $this->body = $body;
48
    }
49
50
    /**
51
     * @inheritDoc
52
     */
53
    public function getMergeTags()
54
    {
55
        return $this->mergeTags;
56
    }
57
58
    /**
59
     * @param array $mergeTags
60
     */
61
    public function setMergeTags(array $mergeTags)
62
    {
63
        $this->mergeTags = $mergeTags;
64
    }
65
66
    /**
67
     * @inheritDoc
68
     */
69
    protected function getCustomArgs()
70
    {
71
        // TODO: Implement getCustomArgs() method.
72
    }
73
74
    /**
75
     * @inheritDoc
76
     */
77
    public function getTos()
78
    {
79
        // TODO: Implement getTos() method.
80
    }
81
}