getParent()->getNextPartStart(); } /** * Returns the next part's unix file mode in a uu-encoded 'begin' line if * one exists, or null otherwise. * * As this is a message-wide setting, ParserUUEncodedPartProxy calls * getNextPartMode() on its parent (a ParserNonMimeMessageProxy, which * stores/returns this information). * * @return int|null The file mode or null */ public function getNextPartMode() : ?int { return $this->getParent()->getNextPartMode(); } /** * Returns the next part's filename in a uu-encoded 'begin' line if one * exists, or null otherwise. * * As this is a message-wide setting, ParserUUEncodedPartProxy calls * getNextPartFilename() on its parent (a ParserNonMimeMessageProxy, which * stores/returns this information). * * @return ?string The file name or null */ public function getNextPartFilename() : ?string { return $this->getParent()->getNextPartFilename(); } /** * Sets the next part's start position within the message's raw stream. * * As this is a message-wide setting, ParserUUEncodedPartProxy calls * setNextPartStart() on its parent (a ParserNonMimeMessageProxy, which * stores/returns this information). */ public function setNextPartStart(int $nextPartStart) : static { $this->getParent()->setNextPartStart($nextPartStart); return $this; } /** * Sets the next part's unix file mode from its 'begin' line. * * As this is a message-wide setting, ParserUUEncodedPartProxy calls * setNextPartMode() on its parent (a ParserNonMimeMessageProxy, which * stores/returns this information). */ public function setNextPartMode(int $nextPartMode) : static { $this->getParent()->setNextPartMode($nextPartMode); return $this; } /** * Sets the next part's filename from its 'begin' line. * * As this is a message-wide setting, ParserUUEncodedPartProxy calls * setNextPartFilename() on its parent (a ParserNonMimeMessageProxy, which * stores/returns this information). */ public function setNextPartFilename(string $nextPartFilename) : static { $this->getParent()->setNextPartFilename($nextPartFilename); return $this; } /** * Returns the file mode included in the uuencoded 'begin' line for this * part. */ public function getUnixFileMode() : ?int { return $this->getHeaderContainer()->getUnixFileMode(); } /** * Returns the filename included in the uuencoded 'begin' line for this * part. */ public function getFilename() : ?string { return $this->getHeaderContainer()->getFilename(); } }