public function PHPExcel_Style_Fill::getHashCode in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php \PHPExcel_Style_Fill::getHashCode()
* Get hash code * *
Return value
string Hash code
Overrides PHPExcel_IComparable::getHashCode
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Fill.php, line 308
Class
- PHPExcel_Style_Fill
- PHPExcel_Style_Fill
Code
public function getHashCode() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getHashCode();
}
return md5($this
->getFillType() . $this
->getRotation() . $this
->getStartColor()
->getHashCode() . $this
->getEndColor()
->getHashCode() . __CLASS__);
}