PhpOffice\PhpPresentation\Shape\Chart\Type\AbstractTypeBar::getHashCode PHP Метод

getHashCode() публичный Метод

Get hash code
public getHashCode ( ) : string
Результат string Hash code
    public function getHashCode()
    {
        $hash = '';
        foreach ($this->getSeries() as $series) {
            $hash .= $series->getHashCode();
        }
        return $hash;
    }

Usage Example

Пример #1
0
 /**
  * Get hash code
  *
  * @return string Hash code
  */
 public function getHashCode()
 {
     return md5(parent::getHashCode() . __CLASS__);
 }