Example #1
0
 /**
  * Get hash code
  *
  * @return string    Hash code
  */
 public function getHashCode()
 {
     if ($this->isSupervisor) {
         return $this->getSharedComponent()->getHashCode();
     }
     return md5($this->borderStyle . $this->color->getHashCode() . __CLASS__);
 }
Example #2
0
 /**
  * Get hash code
  *
  * @return string    Hash code
  */
 public function getHashCode()
 {
     if ($this->isSupervisor) {
         return $this->getSharedComponent()->getHashCode();
     }
     return md5($this->name . $this->size . ($this->bold ? 't' : 'f') . ($this->italic ? 't' : 'f') . ($this->superScript ? 't' : 'f') . ($this->subScript ? 't' : 'f') . $this->underline . ($this->strikethrough ? 't' : 'f') . $this->color->getHashCode() . __CLASS__);
 }