public function PHPExcel_RichText_Run::getHashCode in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php \PHPExcel_RichText_Run::getHashCode()
* Get hash code * *
Return value
string Hash code
Overrides PHPExcel_RichText_TextElement::getHashCode
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ RichText/ Run.php, line 81
Class
- PHPExcel_RichText_Run
- PHPExcel_RichText_Run
Code
public function getHashCode() {
return md5($this
->getText() . $this->_font
->getHashCode() . __CLASS__);
}