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 * * @deprecated 0.10.0 * @codeCoverageIgnore * * @return int */ public function getReferenceId() { return $this->getRelationId(); } /** * Set Footnote Reference ID * * @deprecated 0.10.0 * @codeCoverageIgnore * * @param int $rId */ public function setReferenceId($rId) { $this->setRelationId($rId); } }