HeaderFooterDrawing.php 446 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace PhpOffice\PhpSpreadsheet\Worksheet;
  3. class HeaderFooterDrawing extends Drawing
  4. {
  5. /**
  6. * Get hash code.
  7. *
  8. * @return string Hash code
  9. */
  10. public function getHashCode()
  11. {
  12. return md5(
  13. $this->getPath() .
  14. $this->name .
  15. $this->offsetX .
  16. $this->offsetY .
  17. $this->width .
  18. $this->height .
  19. __CLASS__
  20. );
  21. }
  22. }