Total Complexity | 8 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class ParserUUEncodedPartProxy extends ParserPartProxy |
||
17 | { |
||
18 | /** |
||
19 | * @var UUEncodedPartHeaderContainer |
||
20 | */ |
||
21 | protected $headerContainer; |
||
22 | |||
23 | public function getNextPartStart() |
||
24 | { |
||
25 | return $this->getParent()->getNextPartStart(); |
||
|
|||
26 | } |
||
27 | |||
28 | public function getNextPartMode() |
||
29 | { |
||
30 | return $this->getParent()->getNextPartMode(); |
||
31 | } |
||
32 | |||
33 | public function getNextPartFilename() |
||
34 | { |
||
35 | return $this->getParent()->getNextPartFilename(); |
||
36 | } |
||
37 | |||
38 | public function setNextPartStart($nextPartStart) |
||
39 | { |
||
40 | $this->getParent()->setNextPartStart($nextPartStart); |
||
41 | } |
||
42 | |||
43 | public function setNextPartMode($nextPartMode) |
||
44 | { |
||
45 | $this->getParent()->setNextPartMode($nextPartMode); |
||
46 | } |
||
47 | |||
48 | public function setNextPartFilename($nextPartFilename) |
||
51 | } |
||
52 | |||
53 | public function getUnixFileMode() |
||
54 | { |
||
55 | return $this->headerContainer->getUnixFileMode(); |
||
56 | } |
||
57 | |||
58 | public function getFilename() |
||
61 | } |
||
62 | } |
||
63 |