mode; } /** * Sets the unix file mode for the uuencoded 'begin' line. */ public function setUnixFileMode(int $mode) : static { $this->mode = $mode; return $this; } /** * Returns the filename included in the uuencoded 'begin' line for this * part. */ public function getFilename() : ?string { return $this->filename; } /** * Sets the filename included in the uuencoded 'begin' line. */ public function setFilename(string $filename) : static { $this->filename = $filename; return $this; } }