paragraphStyle = $this->setNewStyle(new Paragraph(), $paragraphStyle); $this->setDocPart($this->container); } /** * Get paragraph style * * @return string|\PhpOffice\PhpWord\Style\Paragraph */ public function getParagraphStyle() { return $this->paragraphStyle; } /** * Get Footnote Reference ID * * @return int * @deprecated 0.10.0 * @codeCoverageIgnore */ public function getReferenceID() { return $this->getRelationID(); } /** * Set Footnote Reference ID * * @param int $rID * @deprecated 0.10.0 * @codeCoverageIgnore */ public function setReferenceID($rID) { $this->setRelationID($rID); } }