PhpOffice\PhpPresentation\Style\Alignment::getHashCode PHP Method

getHashCode() public method

Get hash code
public getHashCode ( ) : string
return string Hash code
    public function getHashCode()
    {
        return md5($this->horizontal . $this->vertical . $this->level . $this->indent . $this->marginLeft . $this->marginRight . __CLASS__);
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Get hash code
  *
  * @return string Hash code
  */
 public function getHashCode()
 {
     return md5($this->text . $this->offsetX . $this->offsetY . $this->width . $this->height . $this->font->getHashCode() . $this->alignment->getHashCode() . ($this->visible ? 't' : 'f') . __CLASS__);
 }