Total Complexity | 7 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
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() |
||
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) |
||
48 | } |
||
49 | |||
50 | public function clearNextPart() |
||
51 | { |
||
55 | } |
||
56 | } |
||
57 |