Test Failed
Push — 2.0 ( 0b4092...91a8b2 )
by Zaahid
04:50
created

ParserNonMimeMessageProxy::setNextPartMode()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 1
1
<?php
2
/**
3
 * This file is part of the ZBateson\MailMimeParser project.
4
 *
5
 * @license http://opensource.org/licenses/bsd-license.php BSD
6
 */
7
namespace ZBateson\MailMimeParser\Parser\Proxy;
8
9
/**
10
 * Description of ParserUUEncodedPartProxy
11
 *
12
 * @author Zaahid Bateson
13
 */
14
class ParserNonMimeMessageProxy extends ParserMessageProxy
15
{
16
    protected $nextPartStart = null;
17
    protected $nextPartMode = null;
18
    protected $nextPartFilename = null;
19
20
    public function getNextPartStart()
21
    {
22
        return $this->nextPartStart;
23
    }
24
25
    public function getNextPartMode()
26
    {
27
        return $this->nextPartMode;
28
    }
29
30
    public function getNextPartFilename()
31
    {
32
        return $this->nextPartFilename;
33
    }
34
35
    public function setNextPartStart($nextPartStart)
36
    {
37
        $this->nextPartStart = $nextPartStart;
38
    }
39
40
    public function setNextPartMode($nextPartMode)
41
    {
42
        $this->nextPartMode = $nextPartMode;
43
    }
44
45
    public function setNextPartFilename($nextPartFilename)
46
    {
47
        $this->nextPartFilename = $nextPartFilename;
48
    }
49
50
    public function clearNextPart()
51
    {
52
        $this->nextPartStart = null;
53
        $this->nextPartMode = null;
54
        $this->nextPartFilename = null;
55
    }
56
}
57