PhpOffice\PhpPresentation\Shape\Chart\Axis::getHashCode PHP Method

getHashCode() public method

Get hash code
public getHashCode ( ) : string
return string Hash code
    public function getHashCode()
    {
        return md5($this->title . $this->formatCode . __CLASS__);
    }

Usage Example

Example #1
0
 /**
  * Get hash code
  *
  * @return string Hash code
  */
 public function getHashCode()
 {
     return md5((is_null($this->type) ? 'null' : $this->type->getHashCode()) . $this->axisX->getHashCode() . $this->axisY->getHashCode() . $this->offsetX . $this->offsetY . $this->width . $this->height . __CLASS__);
 }