entry = $entry; $this->setEntry($entry); } /** * @return bool */ public function isChangedContent() { return !( $this->getCompressionLevel() === $this->entry->getCompressionLevel() && $this->getMethod() === $this->entry->getMethod() && $this->isEncrypted() === $this->entry->isEncrypted() && $this->getEncryptionMethod() === $this->entry->getEncryptionMethod() && $this->getPassword() === $this->entry->getPassword() ); } /** * Returns an string content of the given entry. * * @throws ZipException * * @return string|null */ public function getEntryContent() { return $this->entry->getEntryContent(); } /** * @return ZipSourceEntry */ public function getSourceEntry() { return $this->entry; } }