Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class UUEncodedPartHeaderContainer extends PartHeaderContainer |
||
17 | { |
||
18 | /** |
||
19 | * @var int the unix file permission |
||
20 | */ |
||
21 | protected $mode = null; |
||
22 | |||
23 | /** |
||
24 | * @var string the name of the file in the uuencoding 'header'. |
||
25 | */ |
||
26 | protected $filename = null; |
||
27 | |||
28 | public function getUnixFileMode() |
||
29 | { |
||
30 | return $this->mode; |
||
31 | } |
||
32 | |||
33 | public function setUnixFileMode($mode) |
||
36 | } |
||
37 | |||
38 | public function getFilename() |
||
39 | { |
||
40 | return $this->filename; |
||
41 | } |
||
42 | |||
43 | public function setFilename($filename) |
||
46 | } |
||
47 | } |
||
48 |