mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-18 07:58:41 +00:00
25 lines
447 B
PHP
25 lines
447 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheet\Worksheet;
|
|
|
|
class HeaderFooterDrawing extends Drawing
|
|
{
|
|
/**
|
|
* Get hash code.
|
|
*
|
|
* @return string Hash code
|
|
*/
|
|
public function getHashCode()
|
|
{
|
|
return \md5(
|
|
$this->getPath() .
|
|
$this->name .
|
|
$this->offsetX .
|
|
$this->offsetY .
|
|
$this->width .
|
|
$this->height .
|
|
__CLASS__
|
|
);
|
|
}
|
|
}
|