/* Decoded by unphp.net */ text = $text; } /** * Get text. * * @return string Text */ public function getText(): string { return $this->text; } /** * Set text. * * @param string $text Text * * @return $this */ public function setText(string $text): self { $this->text = $text; return $this; } /** * Get font. For this class, the return value is always null. */ public function getFont(): ?Font { return null; } /** * Get hash code. * * @return string Hash code */ public function getHashCode(): string { return md5( $this->text . __CLASS__ ); } } ?>