jb-data.de/lib/PhpSpreadsheet/Worksheet/HeaderFooterDrawing.php
2025-08-11 22:23:30 +02:00

24 lines
454 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheet\Worksheet;
class HeaderFooterDrawing extends Drawing
{
/**
* Get hash code.
*
* @return string Hash code
*/
public function getHashCode(): string
{
return md5(
$this->getPath()
. $this->name
. $this->offsetX
. $this->offsetY
. $this->width
. $this->height
. __CLASS__
);
}
}