You are here

public function PHPExcel_Worksheet_Drawing_Shadow::getHashCode in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php \PHPExcel_Worksheet_Drawing_Shadow::getHashCode()

* Get hash code * *

Return value

string Hash code

Overrides PHPExcel_IComparable::getHashCode

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php, line 262

Class

PHPExcel_Worksheet_Drawing_Shadow
PHPExcel_Worksheet_Drawing_Shadow

Code

public function getHashCode() {
  return md5(($this->_visible ? 't' : 'f') . $this->_blurRadius . $this->_distance . $this->_direction . $this->_alignment . $this->_color
    ->getHashCode() . $this->_alpha . __CLASS__);
}