You are here

public function PHPExcel_Style_Conditional::getHashCode in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php \PHPExcel_Style_Conditional::getHashCode()

* Get hash code * *

Return value

string Hash code

Overrides PHPExcel_IComparable::getHashCode

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php, line 254

Class

PHPExcel_Style_Conditional
PHPExcel_Style_Conditional

Code

public function getHashCode() {
  return md5($this->_conditionType . $this->_operatorType . implode(';', $this->_condition) . $this->_style
    ->getHashCode() . __CLASS__);
}