entryCount = $entryCount; $this->cdOffset = $cdOffset; $this->cdSize = $cdSize; $this->zip64 = $zip64; $this->comment = $comment; } /** * @param string|null $comment */ public function setComment($comment) { $this->comment = $comment; } /** * @return int */ public function getEntryCount() { return $this->entryCount; } /** * @return int */ public function getCdOffset() { return $this->cdOffset; } /** * @return int */ public function getCdSize() { return $this->cdSize; } /** * @return string|null */ public function getComment() { return $this->comment; } /** * @return bool */ public function isZip64() { return $this->zip64; } }