initials = $initials; } /** * Get Initials. * * @return string */ public function getInitials() { return $this->initials; } /** * Sets the element where this comment starts. */ public function setStartElement(AbstractElement $value): void { $this->startElement = $value; if ($value->getCommentRangeStart() == null) { $value->setCommentRangeStart($this); } } /** * Get the element where this comment starts. * * @return \PhpOffice\PhpWord\Element\AbstractElement */ public function getStartElement() { return $this->startElement; } /** * Sets the element where this comment ends. */ public function setEndElement(AbstractElement $value): void { $this->endElement = $value; if ($value->getCommentRangeEnd() == null) { $value->setCommentRangeEnd($this); } } /** * Get the element where this comment ends. * * @return \PhpOffice\PhpWord\Element\AbstractElement */ public function getEndElement() { return $this->endElement; } }