setText($pText); $this->font = new \PhpOffice\PhpSpreadsheet\Style\Font(); } /** * Get font. * * @return \PhpOffice\PhpSpreadsheet\Style\Font */ public function getFont() { return $this->font; } /** * Set font. * * @param \PhpOffice\PhpSpreadsheet\Style\Font $pFont Font * * @throws \PhpOffice\PhpSpreadsheet\Exception * * @return ITextElement */ public function setFont(\PhpOffice\PhpSpreadsheet\Style\Font $pFont = null) { $this->font = $pFont; return $this; } /** * Get hash code. * * @return string Hash code */ public function getHashCode() { return md5( $this->getText() . $this->font->getHashCode() . __CLASS__ ); } /** * Implement PHP __clone to create a deep clone, not just a shallow copy. */ public function __clone() { $vars = get_object_vars($this); foreach ($vars as $key => $value) { if (is_object($value)) { $this->$key = clone $value; } else { $this->$key = $value; } } } }